/external/chromium_org/media/base/android/java/src/org/chromium/media/ |
MediaCodecBridge.java | 83 private MediaCodecBridge(String mime) { 84 mMediaCodec = MediaCodec.createDecoderByType(mime); 90 private static MediaCodecBridge create(String mime) { 91 return new MediaCodecBridge(mime); 230 private static MediaFormat createAudioFormat(String mime, int SampleRate, int ChannelCount) { 231 return MediaFormat.createAudioFormat(mime, SampleRate, ChannelCount); 235 private static MediaFormat createVideoFormat(String mime, int width, int height) { 236 return MediaFormat.createVideoFormat(mime, width, height);
|
/frameworks/av/include/media/stagefright/ |
Utils.h | 53 // Convert a MIME type to a AudioSystem::audio_format 54 status_t mapMimeToAudioFormat(audio_format_t& format, const char* mime);
|
OMXCodec.h | 74 const char *mime); 112 const char *mime, 236 bool isEncoder, const char *mime, const char *componentName, 259 const char *mime, const sp<MetaData>& meta); 279 const char *mime, const sp<MetaData>& meta); 375 // supporting the given mime type, if queryDecoders==true, returns components 399 const char *componentName, const char *mime,
|
/frameworks/av/media/libstagefright/chromium_http/ |
DataUriSource.cpp | 40 // if no mime type is specified. We prefer to leave this unspecified 41 // instead, since the mime type is sniffed in most cases.
|
/frameworks/av/media/libstagefright/include/ |
ThrottledSource.h | 57 virtual sp<DecryptHandle> DrmInitialization(const char *mime = NULL) { 58 return mSource->DrmInitialization(mime);
|
/packages/apps/Browser/src/com/android/browser/ |
DataUri.java | 23 * Class extracts the mime type and data from a data uri. 26 * data:[<MIME-type>][;charset=<encoding>][;base64],<data>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_06.txt | 3 MIME-Version: 1.0 18 MIME-Version: 1.0
|
msg_15.txt | 8 Mime-version: 1.0 12 > Denne meddelelse er i MIME-format. Da dit postl?sningsprogram ikke forst?r dette format, kan del af eller hele meddelelsen v?re ul?selig.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_06.txt | 3 MIME-Version: 1.0 18 MIME-Version: 1.0
|
msg_15.txt | 8 Mime-version: 1.0 12 > Denne meddelelse er i MIME-format. Da dit postl?sningsprogram ikke forst?r dette format, kan del af eller hele meddelelsen v?re ul?selig.
|
/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());
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
ContentHandler.java | 27 * Receives notifications of the content of a plain RFC822 or MIME message.
33 * part in a multipart MIME entity.
67 * The above shows an example of a MIME message consisting of a multipart
71 * See MIME RFCs 2045-2049 for more information on the structure of MIME
145 * MIME rfc:s) of the <code>Content-Type</code> and
|
/frameworks/av/cmds/stagefright/ |
stagefright.cpp | 167 const char *mime; local 168 CHECK(meta->findCString(kKeyMIMEType, &mime)); 171 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_RAW, mime)) { 189 fprintf(stderr, "Failed to instantiate decoder for '%s'.\n", mime); 375 if (!strncasecmp("video/", mime, 6)) { 386 } else if (!strncasecmp("audio/", mime, 6)) { 426 const char *mime; local 427 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime)); 429 if (!strcasecmp(mime, MEDIA_MIMETYPE_VIDEO_AVC)) { 431 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_VIDEO_MPEG4)) 1005 const char *mime; local 1021 const char *mime; local 1049 const char *mime; local [all...] |
/frameworks/base/media/java/android/media/ |
MediaFormat.java | 82 * A key describing the mime type of the MediaFormat. 85 public static final String KEY_MIME = "mime"; 364 * @param mime The mime type of the content. 369 String mime, 373 format.setString(KEY_MIME, mime); 382 * @param mime The mime type of the content. 389 String mime, 392 format.setString(KEY_MIME, mime); [all...] |
/external/chromium_org/third_party/icu/source/data/mappings/ |
convrtrs.txt | 52 # curly braces, as in ISO_8859-1:1987{IANA*} iso-8859-1 { MIME* } or 53 # some-charset{MIME* IANA*}. The order of tags does not matter, and 68 # Supporting XML parsers, HTML, MIME, and similar applications 131 MIME # Source: http://www.iana.org/assignments/character-sets 140 UTF-8 { IANA* MIME* JAVA* WINDOWS } 154 UTF-16 { IANA* MIME* JAVA* } ISO-10646-UCS-2 { IANA } 164 UTF-16BE { IANA* MIME* JAVA* } x-utf-16be { JAVA } 188 UTF-16LE { IANA* MIME* JAVA* } x-utf-16le { JAVA } 205 UTF-32 { IANA* MIME* } ISO-10646-UCS-4 { IANA } 304 UTF-7 { IANA* MIME* WINDOWS } windows-65000 { WINDOWS* [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
MimeWriter.py | 1 """Generic MIME writer. 4 a basic formatter for creating MIME multi-part files. It doesn't seek around 24 """Generic MIME writer. 36 A MIME writer is much more primitive than a MIME parser. It 77 mailer is not MIME-aware' message. 97 """Add a header line to the MIME message.
|
mailcap.py | 12 The dictionary maps a MIME type (in all lowercase, e.g. 'text/plain') 14 collects all the entries for that MIME type from all available mailcap 15 files. Each dictionary contains key-value pairs for that MIME type, 54 """Read a mailcap file and return a dictionary keyed by MIME type. 56 Each MIME type is mapped to an entry consisting of a list of 58 if a given MIME type appears more than once in the mailcap file. 59 Each dictionary contains key-value pairs for that MIME type, where
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
MimeWriter.py | 1 """Generic MIME writer. 4 a basic formatter for creating MIME multi-part files. It doesn't seek around 24 """Generic MIME writer. 36 A MIME writer is much more primitive than a MIME parser. It 77 mailer is not MIME-aware' message. 97 """Add a header line to the MIME message.
|
mailcap.py | 12 The dictionary maps a MIME type (in all lowercase, e.g. 'text/plain') 14 collects all the entries for that MIME type from all available mailcap 15 files. Each dictionary contains key-value pairs for that MIME type, 54 """Read a mailcap file and return a dictionary keyed by MIME type. 56 Each MIME type is mapped to an entry consisting of a list of 58 if a given MIME type appears more than once in the mailcap file. 59 Each dictionary contains key-value pairs for that MIME type, where
|
/external/icu4c/data/mappings/ |
convrtrs.txt | 52 # curly braces, as in ISO_8859-1:1987{IANA*} iso-8859-1 { MIME* } or 53 # some-charset{MIME* IANA*}. The order of tags does not matter, and 68 # Supporting XML parsers, HTML, MIME, and similar applications 131 MIME # Source: http://www.iana.org/assignments/character-sets 140 UTF-8 { IANA* MIME* JAVA* WINDOWS } 156 UTF-16 { IANA* MIME* JAVA* } ISO-10646-UCS-2 { IANA } 166 UTF-16BE { IANA* MIME* JAVA* } x-utf-16be { JAVA } 190 UTF-16LE { IANA* MIME* JAVA* } x-utf-16le { JAVA } 207 UTF-32 { IANA* MIME* } ISO-10646-UCS-4 { IANA } 310 UTF-7 { IANA* MIME* WINDOWS } windows-65000 { WINDOWS* [all...] |
/development/samples/NotePad/tests/src/com/example/android/notepad/ |
NotePadProviderTest.java | 83 // Sets a MIME type filter, used to test provider methods that return more than one MIME type 84 // for a particular note. The filter will retrieve any MIME types supported for the content URI. 87 // Sets a MIME type filter, used to test provider methods that return more than one MIME type 88 // for a particular note. The filter is nonsense, so it will not retrieve any MIME types. 91 // Sets a MIME type filter for plain text, used to the provider's methods that only handle 161 * method for each URI, which should return the MIME type associated with the URI. 164 // Tests the MIME type for the notes table URI. 168 // Tests the MIME type for the live folder URI [all...] |
/external/chromium_org/content/common/ |
plugin_list_unittest.cc | 19 const char* kFooMimeType = "application/x-foo-mime-type"; 96 // GetPluginInfoArray should not match foo_plugin_ because the MIME type is 108 // foo_plugin_ matches due to the MIME type. 123 // foo_plugin_ matches due to the file type and empty MIME type. 193 PluginList::ParseMIMEDescription("mime/type:", &types); 197 PluginList::ParseMIMEDescription("mime/type:ext1:", &types); 199 EXPECT_EQ("mime/type", types[0].mime_type); 205 // This Java plugin has embedded semicolons in the mime type. 227 // Verify that the mime types with semis are coming through ok.
|
/external/chromium_org/chrome/browser/extensions/ |
plugin_manager.cc | 140 // there is a MIME type that module wants to handle, so we need to add that 141 // MIME type to plugins which handle NaCl modules in order to allow the 152 // Check each MIME type the plugins handle for the NaCl MIME type. 165 // Add the MIME type specified in the extension to this NaCl plugin,
|
/external/chromium_org/chrome/common/extensions/docs/templates/articles/manifest/ |
nacl_modules.html | 4 One or more mappings from MIME types to the Native Client module 8 for the OpenOffice spreadsheet MIME type. 30 Each MIME type can be associated with only one <code>.nmf</code> file, 31 but a single <code>.nmf</code> file might handle multiple MIME types. 34 that handle three MIME types.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
png_unittest.py | 74 (0, 'image/png', 5, 'Set the svn:mime-type property (svn propset svn:mime-type image/png ).')) 76 files = {'/Users/mock/.subversion/config': 'enable-auto-props = yes\n*.png = svn:mime-type=image/png'} 92 files = {'/Users/mock/.subversion/config': 'enable-auto-props = yes\n#enable-auto-props = yes\n*.png = svn:mime-type=image/png'} 100 files = {'/Users/mock/.subversion/config': '#enable-auto-props = yes\nenable-auto-props = yes\n*.png = svn:mime-type=image/png'}
|