HomeSort by relevance Sort by last modified time
    Searched refs:m_contentType (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebCore/platform/network/
BlobData.cpp 67 m_contentType = m_contentType.crossThreadString();
BlobData.h 155 const String& contentType() const { return m_contentType; }
156 void setContentType(const String& contentType) { m_contentType = contentType; }
178 String m_contentType;
  /external/webkit/Source/WebCore/loader/
FormSubmission.cpp 128 , m_contentType(contentType)
236 if (m_contentType.isNull() || m_contentType == "application/x-www-form-urlencoded")
237 frameRequest.resourceRequest().setHTTPContentType(m_contentType);
239 frameRequest.resourceRequest().setHTTPContentType(m_contentType + "; boundary=" + m_boundary);
FormSubmission.h 98 const String& contentType() const { return m_contentType; }
117 String m_contentType;
TextResourceDecoder.h 83 ContentType m_contentType;
TextResourceDecoder.cpp 305 : m_contentType(determineContentType(mimeType))
306 , m_encoding(defaultEncoding(m_contentType, specifiedDefaultEncoding))
571 if (m_contentType == XML)
633 if (m_contentType == CSS && !m_checkedForCSSCharset)
637 if ((m_contentType == HTML || m_contentType == XML) && !m_checkedForHeadCharset) // HTML and XML
658 return m_codec->decode(data + lengthOfBOM, len - lengthOfBOM, false, m_contentType == XML, m_sawError);
666 String result = m_codec->decode(m_buffer.data() + lengthOfBOM, m_buffer.size() - lengthOfBOM, false, m_contentType == XML && !m_useLenientXMLDecoding, m_sawError);
677 && ((!m_checkedForHeadCharset && (m_contentType == HTML || m_contentType == XML)) || (!m_checkedForCSSCharset && (m_contentType == CSS))))
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
InspectorServerQt.h 99 QByteArray m_contentType;
InspectorServerQt.cpp 195 m_contentType = header.contentType().toLatin1();
289 if (!m_contentType.isEmpty())
290 responseHeader.setContentType(QString::fromLatin1(m_contentType));

Completed in 221 milliseconds