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

1 2 3 4 5

  /frameworks/av/media/libstagefright/timedtext/
TimedTextSource.cpp 37 const char *mime; local
38 CHECK(mediaSource->getFormat()->findCString(kKeyMIMEType, &mime));
39 if (strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0) {
42 ALOGE("Unsupported mime type for subtitle. : %s", mime);
TimedText3GPPSource.cpp 71 const char *mime; local
72 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
73 CHECK(strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0);
95 const char *mime; local
96 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
97 CHECK(strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0);
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMPlugin.cpp 64 const MimeClassInfo& mime = pluginInfo().mimes[index]; local
68 if (mimes[i] == mime && m_pluginData->mimePluginIndices()[i] == m_index)
PluginData.cpp 132 const MimeClassInfo& mime = plugins[i].mimes[j]; local
133 const Vector<String>& extensions = mime.extensions;
136 return mime.type;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
__init__.py 40 'mime',
104 # email.MIME<old name> -> email.mime.<new name is lowercased old name>
120 import email.mime
122 importer = LazyImporter('mime.' + _name.lower())
123 sys.modules['email.MIME' + _name] = importer
124 setattr(sys.modules['email'], 'MIME' + _name, importer)
125 setattr(sys.modules['email.mime'], _name, importer)
118 import email.mime namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
__init__.py 40 'mime',
104 # email.MIME<old name> -> email.mime.<new name is lowercased old name>
120 import email.mime
122 importer = LazyImporter('mime.' + _name.lower())
123 sys.modules['email.MIME' + _name] = importer
124 setattr(sys.modules['email'], 'MIME' + _name, importer)
125 setattr(sys.modules['email.mime'], _name, importer)
118 import email.mime namespace
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.cpp 44 AString mime; local
45 CHECK(format->findString("mime", &mime));
68 bool needDedicatedLooper = !strncasecmp(mime.c_str(), "video/", 6);
GenericSource.cpp 74 const char *mime; local
75 CHECK(meta->findCString(kKeyMIMEType, &mime));
79 if (!strncasecmp(mime, "audio/", 6)) {
83 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_VORBIS)) {
89 } else if (!strncasecmp(mime, "video/", 6)) {
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 100 String8 mime; local
101 const void *data = tag.getAlbumArt(&dataSize, &mime);
104 printf("found album art: size=%d mime='%s'\n", dataSize,
105 mime.string());
  /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 
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 40 const char *mime; local
41 CHECK(meta->findCString(kKeyMIMEType, &mime));
43 mIsAudio = !strncasecmp(mime, "audio/", 6);
119 AString mime = tmp; local
121 ALOGI("MediaPuller(%s) stopping.", mime.c_str());
123 ALOGI("MediaPuller(%s) stopped.", mime.c_str());
  /frameworks/wilhelm/tests/examples/
slesTestPlayFdPath.cpp 61 SLDataFormat_MIME mime; local
120 mime.formatType = SL_DATAFORMAT_MIME;
121 /* this is how ignored mime information is specified, according to OpenSL ES spec
123 mime.mimeType = (SLchar*)NULL;
124 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
126 audioSource.pFormat = (void*)&mime;
  /frameworks/wilhelm/tests/listening/
seekTorture.c 60 SLDataFormat_MIME mime; local
65 mime.formatType = SL_DATAFORMAT_MIME;
66 mime.mimeType = (SLchar *) NULL;
67 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
69 audiosrc.pFormat = &mime;
  /frameworks/wilhelm/tests/mimeUri/
slesTestPlayStreamType.cpp 59 SLDataFormat_MIME mime; local
118 mime.formatType = SL_DATAFORMAT_MIME;
119 /* this is how ignored mime information is specified, according to OpenSL ES spec
121 mime.mimeType = (SLchar*)NULL;
122 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
124 audioSource.pFormat = (void*)&mime;
slesTestPlayUri2.cpp 74 SLDataFormat_MIME mime; local
127 mime.formatType = SL_DATAFORMAT_MIME;
128 /* this is how ignored mime information is specified, according to OpenSL ES spec
130 mime.mimeType = (SLchar*)NULL;
131 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
133 audioSource.pFormat = (void *)&mime;
slesTest_playStates.cpp 59 SLDataFormat_MIME mime; local
113 mime.formatType = SL_DATAFORMAT_MIME;
114 /* this is how ignored mime information is specified, according to OpenSL ES spec
116 mime.mimeType = (SLchar*)NULL;
117 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
119 audioSource.pFormat = (void*)&mime;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
CharsetUtil.java 45 * MIME character set names and to get a list of known aliases.
51 * <td>MIME preferred</td>
799 private String mime = null; field in class:CharsetUtil.Charset
802 private Charset(String canonical, String mime, String[] aliases) {
804 this.mime = mime;
    [all...]
  /cts/tests/tests/drm/src/android/drm/cts/
DrmSupportInfoTest.java 130 fail("Mime type '" + mimeType + "' was accepted for DrmSupportInfo");
141 String mime = (String) mimes.next(); local
142 assertEquals(mime, mimeType);
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.cpp 52 const char *mime; local
53 CHECK(format->findCString(kKeyMIMEType, &mime));
54 CHECK(!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_RAW));
298 const char *mime; local
299 CHECK(format->findCString(kKeyMIMEType, &mime));
300 CHECK(!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_RAW));
  /frameworks/av/media/libmedia/
ICrypto.cpp 85 const char *mime) const {
88 data.writeCString(mime);
218 const char *mime = data.readCString(); local
219 reply->writeInt32(requiresSecureDecoderComponent(mime));
  /frameworks/av/media/libstagefright/
AMRWriter.cpp 80 const char *mime; local
81 CHECK(meta->findCString(kKeyMIMEType, &mime));
84 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_WB)) {
86 } else if (strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_NB)) {
  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.cpp 51 const char *mime; local
52 CHECK(meta->findCString(kKeyMIMEType, &mime));
54 if (!strncasecmp("audio/", mime, 6)) {
57 CHECK(!strncasecmp("video/", mime, 6));
MPEG2TSExtractor.cpp 132 const char *mime; local
133 CHECK(meta->findCString(kKeyMIMEType, &mime));
135 if (!strncasecmp("audio/", mime, 6)) {

Completed in 367 milliseconds

1 2 3 4 5