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

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8BlobCustomHelpers.h 55 const String& contentType() const { return m_contentType; }
72 String m_contentType;
V8BlobCustomHelpers.cpp 85 TONATIVE_DEFAULT(bool, containsType, DictionaryHelper::get(dictionary, "type", m_contentType), false);
87 if (!m_contentType.containsOnlyASCII()) {
91 m_contentType = m_contentType.lower();
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeyNeededEvent.h 58 String contentType() const { return m_contentType; }
67 String m_contentType;
MediaKeyNeededEvent.cpp 43 , m_contentType(initializer.contentType)
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.cpp 114 : m_contentType(determineContentType(mimeType))
115 , m_encoding(defaultEncoding(m_contentType, specifiedDefaultEncoding))
373 if (m_contentType == CSSContent && !m_checkedForCSSCharset) {
378 if ((m_contentType == HTMLContent || m_contentType == XMLContent) && !m_checkedForXMLCharset) {
397 if (m_contentType == HTMLContent && !m_checkedForMetaCharset)
411 String result = m_codec->decode(dataForDecode, lengthForDecode, DoNotFlush, m_contentType == XMLContent && !m_useLenientXMLDecoding, m_sawError);
423 && ((!m_checkedForXMLCharset && (m_contentType == HTMLContent || m_contentType == XMLContent)) || (!m_checkedForCSSCharset && (m_contentType == CSSContent))))
    [all...]
TextResourceDecoder.h 87 ContentType m_contentType;
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ParsedContentType.h 64 String m_contentType;
ParsedContentType.cpp 197 : m_contentType(contentType.stripWhiteSpace())
199 parseContentType<ParsedContentType>(m_contentType, *this);
219 m_mimeType = substringForRange(m_contentType, contentRange).stripWhiteSpace();
224 m_parameters.set(substringForRange(m_contentType, key), substringForRange(m_contentType, value));
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobData.h 169 const String& contentType() const { return m_contentType; }
170 void setContentType(const String& contentType) { m_contentType = contentType; }
198 String m_contentType;
BlobData.cpp 72 m_contentType = m_contentType.isolatedCopy();
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLParser.cpp 68 bool isMultipart() const { return m_contentType.startsWith("multipart/"); }
70 String contentType() const { return m_contentType; }
87 String m_contentType;
141 mimeHeader->m_contentType = parsedContentType.mimeType();
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 150 , m_contentType(contentType)
279 frameRequest.resourceRequest().setHTTPContentType(m_contentType);
281 frameRequest.resourceRequest().setHTTPContentType(m_contentType + "; boundary=" + m_boundary);
FormSubmission.h 120 AtomicString m_contentType;

Completed in 448 milliseconds