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

1 2 3 4

  /external/webkit/Source/WebCore/plugins/android/
PluginDataAndroid.cpp 52 MimeClassInfo mime; local
53 mime.type = it->first;
54 mime.desc = it->second;
55 mime.extensions = package->mimeToExtensions().get(mime.type);
56 info.mimes.append(mime);
  /external/webkit/Source/WebCore/plugins/gtk/
PluginDataGtk.cpp 46 MimeClassInfo mime; local
48 mime.type = it->first;
49 mime.desc = it->second;
50 mime.extensions = package->mimeToExtensions().get(mime.type);
52 info.mimes.append(mime);
  /external/webkit/Source/WebCore/plugins/wx/
PluginDataWx.cpp 52 MimeClassInfo mime; local
54 mime.type = it->first;
55 mime.desc = it->second;
56 mime.extensions = package->mimeToExtensions().get(mime.type);
58 info.mimes.append(mime);
  /external/webkit/Source/WebCore/plugins/
DOMPlugin.cpp 68 const MimeClassInfo& mime = pluginInfo().mimes[index]; local
72 if (mimes[i] == mime && m_pluginData->mimePluginIndices()[i] == m_index)
  /external/webkit/Source/WebCore/plugins/chromium/
PluginDataChromium.cpp 86 const MimeClassInfo& mime = plugins[i].mimes[j]; local
87 const Vector<String>& extensions = mime.extensions;
90 return mime.type;
  /external/webkit/Source/WebCore/plugins/symbian/
PluginPackageSymbian.cpp 51 Vector<String> mime; local
52 types[i].split(UChar(';'), true, mime); // <MIME1>;<ext1,ext2,ext3,...>;<Description>
53 if (mime.size() > 0) {
55 if (mime.size() > 1)
56 mime[1].split(UChar(','), false, exts); // <ext1,ext2,ext3,...>
58 m_mimeToExtensions.add(mime[0], exts); // <MIME>,<ext1,ext2,ext3>
59 determineQuirks(mime[0]);
60 if (mime.size() > 2)
61 m_mimeToDescriptions.add(mime[0], mime[2]); // <MIME>,<Description
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebPlatformStrategies.cpp 89 MimeClassInfo mime; local
91 mime.type = it->first;
92 mime.desc = it->second;
93 mime.extensions = package->mimeToExtensions().get(mime.type);
95 info.mimes.append(mime);
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/x11/
NetscapePluginModuleX11.cpp 86 MimeClassInfo& mime = plugin.info.mimes[i++]; local
87 mime.type = it->first;
88 mime.desc = it->second;
91 mime.extensions = extensionIt->second;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebResponse.cpp 133 // Try to guess a better MIME type from the URL. We call
143 WTF::String mime = WebCore::MIMETypeRegistry::getMIMETypeForExtension(path); local
144 if (!mime.isEmpty()) {
145 // Great, we found a MIME type.
146 mimeType = std::string(mime.utf8().data(), mime.length());
  /frameworks/base/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());
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageTransferHandler.java 48 String mime = flavor.getMimeType(); local
49 DataFlavor flave = new DataFlavor(mime);
  /prebuilt/common/http-client/
httpmime-4.1.1.jar 
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeparent.c 52 char *mime; member in struct:XdgMimeParents
90 free (list->parents[i].mime);
100 return strcmp (((XdgMimeParents *)v1)->mime, ((XdgMimeParents *)v2)->mime);
105 const char *mime)
112 key.mime = (char *)mime;
156 if (strcmp (list->parents[i].mime, line) == 0)
171 list->parents[list->n_mimes].mime = strdup (line);
214 printf ("%s %s\n", list->parents[i].mime, *p)
    [all...]
  /external/webkit/Source/WebCore/plugins/qt/
PluginPackageQt.cpp 77 Vector<String> mime; local
78 types[i].split(UChar(':'), true, mime);
79 if (mime.size() > 0) {
81 if (mime.size() > 1)
82 mime[1].split(UChar(','), false, exts);
83 determineQuirks(mime[0]);
84 m_mimeToExtensions.add(mime[0], exts);
85 if (mime.size() > 2)
86 m_mimeToDescriptions.add(mime[0], mime[2])
    [all...]
  /frameworks/base/media/libstagefright/mpeg2ts/
AnotherPacketSource.cpp 35 const char *mime; local
36 CHECK(meta->findCString(kKeyMIMEType, &mime));
38 if (!strncasecmp("audio/", mime, 6)) {
41 CHECK(!strncasecmp("video/", mime, 6));
MPEG2TSExtractor.cpp 141 const char *mime; local
142 CHECK(meta->findCString(kKeyMIMEType, &mime));
144 if (!strncasecmp("audio/", mime, 6)) {
  /system/media/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;
  /system/media/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;
  /system/media/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/Email/emailcommon/src/org/apache/james/mime4j/util/
CharsetUtil.java 44 * MIME character set names and to get a list of known aliases.
50 * <td>MIME preferred</td>
798 private String mime = null; field in class:CharsetUtil.Charset
801 private Charset(String canonical, String mime, String[] aliases) {
803 this.mime = mime;
    [all...]
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.cpp 50 const char *mime; local
51 CHECK(meta->findCString(kKeyMIMEType, &mime));
66 bool needDedicatedLooper = !strncasecmp(mime, "video/", 6);
108 const char *mime; local
109 CHECK(meta->findCString(kKeyMIMEType, &mime));
112 msg->setString("mime", mime);
114 if (!strncasecmp("video/", mime, 6)) {
122 CHECK(!strncasecmp("audio/", mime, 6));
  /frameworks/base/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/base/media/libstagefright/codecs/m4v_h263/enc/
M4vH263Encoder.cpp 237 const char *mime; local
238 CHECK(meta->findCString(kKeyMIMEType, &mime));
239 CHECK(!strcmp(mime, MEDIA_MIMETYPE_VIDEO_MPEG4) ||
240 !strcmp(mime, MEDIA_MIMETYPE_VIDEO_H263));
241 if (!strcmp(mime, MEDIA_MIMETYPE_VIDEO_MPEG4)) {
305 mFormat->setCString(kKeyMIMEType, mime);

Completed in 420 milliseconds

1 2 3 4