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

1 2

  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
MediaTypeTest.java 31 * Test MediaType API and parsing.
38 MediaType mediaType = MediaType.parse("text/plain;boundary=foo;charset=utf-8");
39 assertEquals("text", mediaType.type());
40 assertEquals("plain", mediaType.subtype());
41 assertEquals("UTF-8", mediaType.charset().name());
42 assertEquals("text/plain;boundary=foo;charset=utf-8", mediaType.toString());
43 assertTrue(mediaType.equals(MediaType.parse("text/plain;boundary=foo;charset=utf-8")))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQuery.h 52 MediaQuery(Restrictor, const String& mediaType, PassOwnPtrWillBeRawPtr<ExpressionHeapVector> exprs);
57 const String& mediaType() const { return m_mediaType; }
MediaValuesCached.cpp 64 const String mediaType = calculateMediaType(frame);
65 if (!mediaType.isEmpty())
66 m_data.mediaType = mediaType.isolatedCopy();
158 const String MediaValuesCached::mediaType() const
160 return m_data.mediaType;
MediaValuesCached.h 30 String mediaType;
75 virtual const String mediaType() const OVERRIDE;
MediaValuesDynamic.cpp 125 const String MediaValuesDynamic::mediaType() const
MediaQueryEvaluator.cpp 98 const String MediaQueryEvaluator::mediaType() const
100 // If a static mediaType was given by the constructor, we use it here.
105 return m_mediaValues->mediaType();
113 || equalIgnoringCase(mediaTypeToMatch, mediaType());
123 if (!mediaTypeMatch(query->mediaType()))
269 if (equalIgnoringCase(mediaValues.mediaType(), MediaTypeNames::screen)) {
271 } else if (equalIgnoringCase(mediaValues.mediaType(), MediaTypeNames::print)) {
620 if (!equalIgnoringCase(mediaValues.mediaType(), MediaTypeNames::tv))
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 27 public final class MediaType {
34 private final String mediaType;
39 private MediaType(String mediaType, String type, String subtype, String charset) {
40 this.mediaType = mediaType;
50 public static MediaType parse(String string) {
70 return new MediaType(string, type, subtype, charset);
110 return mediaType;
114 return o instanceof MediaType && ((MediaType) o).mediaType.equals(mediaType)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterSource.java 44 mMatcher.add("/filter/mediatype/*/*", FILTER_BY_MEDIATYPE);
58 // /filter/mediatype/k/{set} where k is the media type we want.
66 int mediaType = mMatcher.getIntVar(0);
69 return new FilterTypeSet(path, dataManager, sets[0], mediaType);
LocalSource.java 132 int mediaType = getMediaType(
143 switch (mediaType) {
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 19 import com.squareup.okhttp.MediaType;
102 MediaType mediaType = MediaType.parse(contentType);
103 Document document = Jsoup.parse(in, mediaType.charset(UTF_8).name(), url.toString());
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
FilterUtils.java 177 int mediaType;
180 mediaType = MediaObject.MEDIA_TYPE_IMAGE;
183 mediaType = MediaObject.MEDIA_TYPE_VIDEO;
189 return "/filter/mediatype/" + mediaType + "/{" + base + "}";
GalleryActivity.java 180 int mediaType = intent.getIntExtra(KEY_MEDIA_TYPES, 0);
181 if (mediaType != 0) {
183 KEY_MEDIA_TYPES, String.valueOf(mediaType))
PhotoPage.java     [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebContextMenuData.h 49 enum MediaType {
67 MediaType mediaType;
175 : mediaType(MediaTypeNone)
  /external/libpcap/msdos/
ndis2.c 79 static int mediaType = 0;
840 switch (mediaType)
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSlidingWindow.java 52 public int mediaType;
267 entry.mediaType = (item == null)
  /external/wpa_supplicant_8/src/utils/
http_curl.c 287 ASN1_IA5STRING *mediaType;
363 ASN1_SIMPLE(LogotypeDetails, mediaType, ASN1_IA5STRING),
585 if (details->mediaType) {
587 ASN1_STRING_print(out, details->mediaType);
    [all...]
  /external/chromium_org/remoting/webapp/js_proto/
chrome_proto.js 224 OnClickData.prototype.mediaType;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp     [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
xsltInternals.h     [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 3676 ContentValues mediatype = new ContentValues(); local
    [all...]
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /external/chromium_org/third_party/closure_compiler/externs/
chrome_extensions.js     [all...]

Completed in 1044 milliseconds

1 2