/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebresource.cpp | 42 * MIME type and frame name of the resource. 129 * WebKitWebResource:mime-type: 131 * The MIME type of the web resource. 138 "mime-type", 139 _("MIME Type"), 140 _("The MIME type of the resource"), 248 * @mime_type: the MIME type of the #WebKitWebResource 339 * Return value: the MIME type of the resource
|
/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.
|
/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>
|
/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());
|
/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/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)) { 354 AString mime; local 355 if (msg->findString("mime", &mime)) { 356 meta->setCString(kKeyMIMEType, mime.c_str()) [all...] |
/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)) 1030 const char *mime; local 1047 const char *mime; local 1075 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); 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); 370 // supporting the given mime type, if queryDecoders==true, returns components 394 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...] |
/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)) {
|
/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/drm/libdrmframework/include/ |
DrmManagerClientImpl.h | 107 * True if DrmManager can handle given path or mime type. 147 * Retrieves the mime type embedded inside the original content 153 * Returns mime-type of the original content, such as "video/mpeg" 164 * @param[in] mimeType Mime type of the content or null. 248 * @param[in] mimeType Description/MIME type of the input data packet 304 * @param[in] mime The mime type of the protected content if it is not NULL or empty 309 int uniqueId, int fd, off64_t offset, off64_t length, const char* mime); 316 * @param[in] mime The mime type of the protected content if it is not NULL or empt [all...] |
/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
|
DrmManagerClient.h | 69 * @param[in] mime Mime type of the protected content if it is not NULL or empty 73 sp<DecryptHandle> openDecryptSession(int fd, off64_t offset, off64_t length, const char* mime); 79 * @param[in] mime Mime type of the protected content if it is not NULL or empty 83 sp<DecryptHandle> openDecryptSession(const char* uri, const char* mime); 89 * @param[in] mimeType Mime type of the protected content 242 * True if DrmManager can handle given path or mime type. 279 * Retrieves the mime type embedded inside the original content 284 * Returns mime-type of the original content, such as "video/mpeg [all...] |
DrmSupportInfo.h | 164 * @param[in] mimeType MIME type 166 * true - if mime-type is supported 167 * false - if mime-type is not supported
|