/external/bluetooth/glib/gio/xdgmime/ |
xdgmimecache.c | 2 /* xdgmimealias.c: Private file. mmappable caches for mime data 46 #warning Building xdgmime without MMAP support. Binary "mime.info" cache files will not be used. 351 const char *mime; member in struct:__anon2435 426 mime_types[n].mime = mime_type; 502 mime_types[n].mime = cache->buffer + mimetype_offset; 586 mime_types[i] = mimes[i].mime; 752 is_super_type (const char *mime) 757 length = strlen (mime); 758 type = &(mime[length - 2]); 768 _xdg_mime_cache_mime_type_subclass (const char *mime, [all...] |
/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/av/media/libstagefright/ |
Utils.cpp | 70 const char *mime; local 71 CHECK(meta->findCString(kKeyMIMEType, &mime)); 74 msg->setString("mime", mime); 81 if (!strncasecmp("video/", mime, 6)) { 88 } else if (!strncasecmp("audio/", mime, 6)) {
|
StagefrightMetadataRetriever.cpp | 203 const char *mime; local 204 CHECK(trackMeta->findCString(kKeyMIMEType, &mime)); 206 ALOGV("thumbNailTime = %lld us, timeUs = %lld us, mime = %s", 207 thumbNailTime, timeUs, mime); 314 const char *mime; local 315 CHECK(meta->findCString(kKeyMIMEType, &mime)); 317 if (!strncasecmp(mime, "video/", 6)) { 479 const char *mime; local 480 if (trackMeta->findCString(kKeyMIMEType, &mime)) { 481 if (!hasAudio && !strncasecmp("audio/", mime, 6)) [all...] |
/packages/apps/Email/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/base/media/java/android/media/ |
MediaFormat.java | 64 * A key describing the mime type of the MediaFormat. 67 public static final String KEY_MIME = "mime"; 260 * @param mime The mime type of the content. 265 String mime, 269 format.setString(KEY_MIME, mime); 278 * @param mime The mime type of the content. 283 String mime, 287 format.setString(KEY_MIME, mime); [all...] |
/frameworks/av/cmds/stagefright/ |
stagefright.cpp | 168 const char *mime; local 169 CHECK(meta->findCString(kKeyMIMEType, &mime)); 172 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_RAW, mime)) { 190 fprintf(stderr, "Failed to instantiate decoder for '%s'.\n", mime); 376 if (!strncasecmp("video/", mime, 6)) { 387 } else if (!strncasecmp("audio/", mime, 6)) { 427 const char *mime; local 428 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime)); 430 if (!strcasecmp(mime, MEDIA_MIMETYPE_VIDEO_AVC)) { 432 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_VIDEO_MPEG4)) 1031 const char *mime; local 1048 const char *mime; local 1076 const char *mime; local [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
AttachmentUtilities.java | 61 * The MIME type(s) of attachments we're willing to send via attachments. 69 * The MIME type(s) of attachments we're willing to send from the internal UI. 79 * The MIME type(s) of attachments we're willing to view. 85 * The MIME type(s) of attachments we're not willing to view. 90 * The MIME type(s) of attachments we're willing to download to SD. 96 * The MIME type(s) of attachments we're not willing to download to SD. 180 * extensions. The mime type is inferred based upon the table below. It's not perfect, but 199 * NOTE: Since mime types on Android are case-*sensitive*, return values are always in 203 * @param mimeType The given mime type 204 * @return A likely mime type for the attachmen [all...] |
/frameworks/av/include/media/stagefright/ |
OMXCodec.h | 74 const char *mime); 108 const char *mime, 233 bool isEncoder, const char *mime, const char *componentName, 256 const char *mime, const sp<MetaData>& meta); 276 const char *mime, OMX_U32 width, OMX_U32 height); 367 // supporting the given mime type, if queryDecoders==true, returns components 391 const char *componentName, const char *mime,
|
/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/bluetooth/glib/docs/reference/glib/tmpl/ |
bookmarkfile.sgml | 11 its MIME type, the application that is registering the bookmark and the 30 the resource's MIME type; the applications that have registered a bookmark; 33 registered; the URI and MIME type of an icon, to be used when displaying the 44 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info" 50 <mime:mime-type>text/xml</mime:mime-type>
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
GenericSource.cpp | 70 const char *mime; local 71 CHECK(meta->findCString(kKeyMIMEType, &mime)); 75 if (!strncasecmp(mime, "audio/", 6)) { 79 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_VORBIS)) { 85 } else if (!strncasecmp(mime, "video/", 6)) {
|
NuPlayerDecoder.cpp | 48 const char *mime; local 49 CHECK(meta->findCString(kKeyMIMEType, &mime)); 64 bool needDedicatedLooper = !strncasecmp(mime, "video/", 6);
|
/frameworks/base/media/libdrm/mobile1/include/jni/ |
drm1_jni.h | 204 * DRM MIME type defines 207 android_drm_mobile1_DrmRawContent_DRM_MIMETYPE_MESSAGE /**< The "application/vnd.oma.drm.message" MIME type */ 209 android_drm_mobile1_DrmRawContent_DRM_MIMETYPE_CONTENT /**< The "application/vnd.oma.drm.content" MIME type */ 211 android_drm_mobile1_DrmRightsManager_DRM_MIMETYPE_RIGHTS_XML /**< The "application/vnd.oma.drm.rights+xml" MIME type */ 213 android_drm_mobile1_DrmRightsManager_DRM_MIMETYPE_RIGHTS_WBXML /**< The "application/vnd.oma.drm.rights+wbxml" MIME type */
|
/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);
|
/development/samples/NotePad/src/com/example/android/notepad/ |
NotePad.java | 107 * MIME type definitions 111 * The MIME type of {@link #CONTENT_URI} providing a directory of notes. 116 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single
|
/external/chromium/chrome/browser/chromeos/ |
gview_request_interceptor.cc | 21 // The PDF mime type is treated special if the browser has a built-in 26 // This is the list of mime types currently supported by the Google 48 // Don't attempt to intercept here as we want to wait until the mime
|
/external/webkit/Source/WebCore/loader/mac/ |
LoaderNSURLExtras.mm | 73 // No mime type reported. Just return the filename we have now. 78 // Do not correct filenames that are reported with a mime type of tar, and 92 // The extension doesn't match the MIME type. Correct this.
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebResource.idl | 51 @param MIMEType The MIME type of the resource. 75 @result The MIME type of the resource. 78 HRESULT MIMEType([out, retval] BSTR* mime);
|
/external/webkit/Source/WebKit2/UIProcess/Plugins/ |
PluginInfoStore.h | 64 // Returns the info for a plug-in that can handle the given MIME type. 65 // If the MIME type is null, the file extension of the given url will be used to infer the 66 // plug-in type. In that case, mimeType will be filled in with the right MIME type.
|
/frameworks/av/include/drm/ |
DrmInfo.h | 41 * @param[in] mimeType MIME type 108 * Returns MIME type associated with this instance 110 * @return MIME type
|
DrmInfoRequest.h | 55 * @param[in] mimeType MIME type 122 * Returns MIME type associated with this instance 124 * @return MIME type
|
DrmSupportInfo.h | 164 * @param[in] mimeType MIME type 166 * true - if mime-type is supported 167 * false - if mime-type is not supported
|
/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));
|