HomeSort by relevance Sort by last modified time
    Searched defs:contentType (Results 1 - 25 of 886) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/resources/
tripmine.php 37 $contentType = $_SERVER['CONTENT_TYPE'];
51 if (isset($contentType)
52 && !preg_match("/^application\/x\-www\-form\-urlencoded(;.+)?$/", $contentType)
53 && !preg_match("/^multipart\/form\-data(;.+)?$/", $contentType)
54 && !preg_match("/^text\/plain(;.+)?$/", $contentType)) {
55 setState("FAIL. Non-simple content type: $contentType.", $stateFile);
  /external/webkit/Source/WebCore/platform/network/
BlobStorageData.h 42 static PassRefPtr<BlobStorageData> create(const String& contentType, const String& contentDisposition)
44 return adoptRef(new BlobStorageData(contentType, contentDisposition));
47 const String& contentType() const { return m_data.contentType(); }
54 BlobStorageData(const String& contentType, const String& contentDisposition)
56 m_data.setContentType(contentType);
  /frameworks/base/core/java/android/webkit/
DataLoader.java 47 String contentType = url.substring(0, commaIndex);
49 loadListener.parseContentTypeHeader(contentType);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/cms/
ContentInfo.java 19 private ASN1ObjectIdentifier contentType;
45 contentType = (ASN1ObjectIdentifier)seq.getObjectAt(0);
60 ASN1ObjectIdentifier contentType,
63 this.contentType = contentType;
69 return contentType;
81 * contentType ContentType,
83 * [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
90 v.add(contentType);
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
ContentInfo.java 19 private DERObjectIdentifier contentType;
42 contentType = (DERObjectIdentifier)e.nextElement();
51 DERObjectIdentifier contentType,
54 this.contentType = contentType;
60 return contentType;
72 * contentType ContentType,
74 * [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
81 v.add(contentType);
    [all...]
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceResponseSoup.cpp 74 String contentType = soup_message_headers_get_one(soupMessage->response_headers, "Content-Type");
75 setMimeType(extractMIMETypeFromMediaType(contentType));
77 setTextEncodingName(extractCharsetFromMediaType(contentType));
  /external/webkit/Source/WebKit/chromium/src/
WebBlobData.cpp 93 WebString WebBlobData::contentType() const
96 return m_private->contentType();
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetelementsbytagnamelength.java 55 String contentType = getContentType();
56 preload(contentType, "staff", false);
documentgetelementsbytagnametotallength.java 50 String contentType = getContentType();
51 preload(contentType, "staff", false);
documentgetimplementation.java 54 String contentType = getContentType();
55 preload(contentType, "staff", false);
documentgetrootnode.java 54 String contentType = getContentType();
55 preload(contentType, "staff", false);
documentinvalidcharacterexceptioncreateattribute.java 60 String contentType = getContentType();
61 preload(contentType, "staff", true);
documentinvalidcharacterexceptioncreateelement.java 60 String contentType = getContentType();
61 preload(contentType, "staff", true);
documentinvalidcharacterexceptioncreateentref.java 57 String contentType = getContentType();
58 preload(contentType, "hc_staff", true);
documentinvalidcharacterexceptioncreateentref1.java 54 String contentType = getContentType();
55 preload(contentType, "hc_staff", true);
documentinvalidcharacterexceptioncreatepi.java 57 String contentType = getContentType();
58 preload(contentType, "hc_staff", true);
documentinvalidcharacterexceptioncreatepi1.java 54 String contentType = getContentType();
55 preload(contentType, "hc_staff", true);
documenttypegetdoctype.java 54 String contentType = getContentType();
55 preload(contentType, "staff", false);
documenttypegetentitieslength.java 53 String contentType = getContentType();
54 preload(contentType, "staff", false);
domimplementationfeaturenoversion.java 50 String contentType = getContentType();
51 preload(contentType, "staff", false);
domimplementationfeaturexml.java 49 String contentType = getContentType();
50 preload(contentType, "staff", false);
elementgetelementsbytagname.java 56 String contentType = getContentType();
57 preload(contentType, "staff", false);
elementgetelementsbytagnamenomatch.java 54 String contentType = getContentType();
55 preload(contentType, "staff", false);
elementgettagname.java 54 String contentType = getContentType();
55 preload(contentType, "staff", false);
hc_documentgetelementsbytagnamelength.java 54 String contentType = getContentType();
55 preload(contentType, "hc_staff", false);

Completed in 445 milliseconds

1 2 3 4 5 6 7 8 91011>>