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

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/fxjs/xfa/
cjx_bind.cpp 15 void CJX_Bind::contentType(CFXJSE_Value* pValue,
cjx_datavalue.cpp 15 void CJX_DataValue::contentType(CFXJSE_Value* pValue,
cjx_exdata.cpp 21 void CJX_ExData::contentType(CFXJSE_Value* pValue,
cjx_image.cpp 21 void CJX_Image::contentType(CFXJSE_Value* pValue,
cjx_script.cpp 22 void CJX_Script::contentType(CFXJSE_Value* pValue,
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
RequestBody.java 29 public abstract MediaType contentType();
44 * contentType} is non-null and lacks a charset, this will use UTF-8.
46 public static RequestBody create(MediaType contentType, String content) {
48 if (contentType != null) {
49 charset = contentType.charset();
52 contentType = MediaType.parse(contentType + "; charset=utf-8");
56 return create(contentType, bytes);
60 public static RequestBody create(final MediaType contentType, final ByteString content) {
62 @Override public MediaType contentType() {
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RealResponseBody.java 32 @Override public MediaType contentType() {
33 String contentType = headers.get("Content-Type");
34 return contentType != null ? MediaType.parse(contentType) : null;
  /tools/apksig/src/main/java/com/android/apksig/internal/pkcs7/
ContentInfo.java 32 public String contentType;
EncapsulatedContentInfo.java 32 public String contentType;
44 contentType = contentTypeOid;
  /developers/build/prebuilts/gradle/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
ContentItem.java 34 public final int contentType;
45 contentType = type;
57 contentType = type;
84 switch (contentType) {
  /developers/samples/android/content/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
ContentItem.java 34 public final int contentType;
45 contentType = type;
57 contentType = type;
84 switch (contentType) {
  /development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/content/
ContentItem.java 34 public final int contentType;
45 contentType = type;
57 contentType = type;
84 switch (contentType) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
CMSAttributes.java 10 * contentType ::= 1.2.840.113549.1.9.3
23 public static final ASN1ObjectIdentifier contentType = PKCSObjectIdentifiers.pkcs_9_at_contentType;
ContentInfo.java 19 * contentType ContentType,
20 * content [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL
24 * eContentType ContentType,
33 private ASN1ObjectIdentifier contentType;
82 contentType = (ASN1ObjectIdentifier)seq.getObjectAt(0);
97 ASN1ObjectIdentifier contentType,
100 this.contentType = contentType;
106 return contentType;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
ContentInfo.java 20 private ASN1ObjectIdentifier contentType;
45 contentType = (ASN1ObjectIdentifier)e.nextElement();
56 ASN1ObjectIdentifier contentType,
59 this.contentType = contentType;
65 return contentType;
77 * contentType ContentType,
79 * [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
86 v.add(contentType);
    [all...]
  /external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
HttpEntityBody.java 34 @Override public MediaType 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);

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>