Searched refs:m_contentType (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/loader/ |
D | TextResourceDecoder.cpp | 305 : m_contentType(determineContentType(mimeType)) in TextResourceDecoder() 306 , m_encoding(defaultEncoding(m_contentType, specifiedDefaultEncoding)) in TextResourceDecoder() 571 if (m_contentType == XML) in checkForHeadCharset() 633 if (m_contentType == CSS && !m_checkedForCSSCharset) in decode() 637 if ((m_contentType == HTML || m_contentType == XML) && !m_checkedForHeadCharset) // HTML and XML in decode() 658 …return m_codec->decode(data + lengthOfBOM, len - lengthOfBOM, false, m_contentType == XML, m_sawEr… in decode() 666 …(m_buffer.data() + lengthOfBOM, m_buffer.size() - lengthOfBOM, false, m_contentType == XML && !m_u… in decode() 677 …(!m_checkedForHeadCharset && (m_contentType == HTML || m_contentType == XML)) || (!m_checkedForCSS… in flush() 687 …String result = m_codec->decode(m_buffer.data(), m_buffer.size(), true, m_contentType == XML && !m… in flush()
|
D | FormSubmission.cpp | 128 , m_contentType(contentType) in FormSubmission() 236 if (m_contentType.isNull() || m_contentType == "application/x-www-form-urlencoded") in populateFrameLoadRequest() 237 frameRequest.resourceRequest().setHTTPContentType(m_contentType); in populateFrameLoadRequest() 239 … frameRequest.resourceRequest().setHTTPContentType(m_contentType + "; boundary=" + m_boundary); in populateFrameLoadRequest()
|
D | FormSubmission.h | 98 const String& contentType() const { return m_contentType; } in contentType() 117 String m_contentType; variable
|
D | TextResourceDecoder.h | 83 ContentType m_contentType; variable
|
/external/webkit/Source/WebCore/platform/network/ |
D | BlobData.h | 155 const String& contentType() const { return m_contentType; } in contentType() 156 void setContentType(const String& contentType) { m_contentType = contentType; } in setContentType() 178 String m_contentType; variable
|
D | BlobData.cpp | 67 m_contentType = m_contentType.crossThreadString(); in detachFromCurrentThread()
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | InspectorServerQt.cpp | 195 m_contentType = header.contentType().toLatin1(); in tcpReadyRead() 289 if (!m_contentType.isEmpty()) in tcpReadyRead() 290 responseHeader.setContentType(QString::fromLatin1(m_contentType)); in tcpReadyRead()
|
D | InspectorServerQt.h | 99 QByteArray m_contentType; variable
|