/packages/apps/IM/src/com/android/im/provider/ |
Imps.java | 156 * The MIME type of {@link #CONTENT_URI} providing a directory of 260 * The MIME type of {@link #CONTENT_URI} providing a directory of 267 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single 333 * The MIME type of {@link #CONTENT_URI} providing a directory of account status. 339 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single account status. 593 * The MIME type of {@link #CONTENT_URI} providing a directory of 599 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single 641 * The MIME type of {@link #CONTENT_URI} providing a directory of 648 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single 706 * The MIME type of {@link #CONTENT_URI} providing a directory o [all...] |
/packages/apps/Email/tests/src/com/android/email/provider/ |
AttachmentProviderTests.java | 273 * If the given mime type is non-empty and anything other than "application/octet-stream", 275 * If the filename has a recognizable extension and it converts to a mime type, return that. 285 // If the given mime type is non-empty and anything other than "application/octet-stream", 287 assertEquals("mime/type", AttachmentProvider.inferMimeType(null, "mime/type")); 288 assertEquals("mime/type", AttachmentProvider.inferMimeType("", "mime/type")); 289 assertEquals("mime/type", AttachmentProvider.inferMimeType(FILE_PDF, "mime/type")); 291 // If the filename has a recognizable extension and it converts to a mime type, return that [all...] |
/frameworks/base/core/java/android/content/ |
IntentFilter.java | 67 * match; a content: URI will never match because they always have a MIME type 88 * used for the MIME sub-type, in both the Intent and IntentFilter, so that the 90 * <em>Note that MIME type matching here is <b>case sensitive</b>, unlike 91 * formal RFC MIME types!</em> You should thus always use lower case letters 92 * for your MIME types. 206 * The filter matched an intent with the same data MIME type. 211 * The filter didn't match due to different MIME types. 296 * This exception is thrown when a given MIME type does not have a valid 309 * Create a new IntentFilter instance with a specified action and MIME 310 * type, where you know the MIME type is correctly formatted. This catche [all...] |
/external/opencore/engines/author/src/ |
pvauthorengine.h | 68 //MIME strings for .amr and .aac composer 310 * @param aComposerMimeType Composer Mime type 325 * @param aMimeType Encoder Mime type specified by client 331 * Get the PVMFFormatType corresponding to the specified encoder mime type 337 * @param aMimeType Mime type to be converted to PVMFFormatType 338 * @return PVMFSuccess if a mapping for the Mime type is found, else return PVMFFailure.
|
/external/webkit/WebCore/plugins/android/ |
PluginPackageAndroid.cpp | 314 // Grab the MIME description. This is in the format, e.g: 317 PLUGIN_LOG("MIME description: \"%s\"\n", mimeDescription.utf8().data()); 325 // Iterate through the entries, adding them to the MIME mappings. 329 // Field 1 is the MIME type (e.g "application/x-shockwave-flash"). 336 PLUGIN_LOG("Bad MIME entry \"%s\"\n", mimeEntry.utf8().data()); 351 // Map the mime type to the vector of extensions and the description
|
/frameworks/base/media/libstagefright/id3/ |
ID3.cpp | 625 ID3::getAlbumArt(size_t *length, String8 *mime) const { 627 mime->setTo(""); 639 mime->setTo((const char *)&data[1]); 660 mime->setTo("image/png"); 662 mime->setTo("image/jpeg"); 664 mime->setTo("text/plain");
|
/packages/apps/Email/src/com/android/email/mail/internet/ |
MimeMessage.java | 73 // In MIME, en_US-like date format should be used. In other words "MMM" should be encoded to 75 // This conversion is used when generating outgoing MIME messages. Incoming MIME date 320 * Set the mime "Message-ID" header 330 * Get the mime "Message-ID" header. This value will be preloaded with a locally-generated 359 setHeader("MIME-Version", "1.0");
|
/external/webkit/WebCore/platform/network/ |
HTTPParsers.cpp | 165 // compatibility we could consider using the first or last valid MIME type instead. 171 // after the MIME type, but not within the MIME type itself. And linear white space
|
/external/webkit/WebCore/plugins/mac/ |
PluginPackageMac.cpp | 221 String mime = mimes[i].lower(); local 225 m_mimeToExtensions.set(mime, extensions); 227 m_mimeToDescriptions.set(mime, descriptions[i / 2]);
|
/external/webkit/WebKit/mac/WebView/ |
WebView.h | 112 content should be handled, based on the resource's URL and MIME type. 122 @abstract Checks if the WebKit can show content of a certain MIME type. 123 @param MIMEType The MIME type to check. 131 @abstract Checks if the the MIME type is a type that the WebKit will interpret as HTML. 132 @param MIMEType The MIME type to check. 139 @result Returns an array of NSStrings that describe the MIME types 146 @discussion Sets the array of NSString MIME types that WebKit will 148 array using MIMETypesShownAsHTML and add additional MIME types to that 513 A document class may register for a primary MIME type by excluding 517 @param viewClass The WebDocumentView class to use to render data for a given MIME type [all...] |
/external/webkit/WebKit/win/Interfaces/ |
IWebView.idl | 142 content should be handled, based on the resource's URL and MIME type. 157 @abstract Checks if the WebKit can show content of a certain MIME type. 158 @param MIMEType The MIME type to check. 166 @abstract Checks if the the MIME type is a type that the WebKit will interpret as HTML. 167 @param MIMEType The MIME type to check. 175 @result Returns an array of NSStrings that describe the MIME types 183 @discussion Sets the array of NSString MIME types that WebKit will 185 array using MIMETypesShownAsHTML and add additional MIME types to that 552 A document class may register for a primary MIME type by excluding 556 @param viewClass The WebDocumentView class to use to render data for a given MIME type [all...] |
/frameworks/base/core/java/com/android/internal/http/multipart/ |
MultipartEntity.java | 56 * MIME data streams as outlined in RFC 1521. The multipart/form-data contains 117 /** The MIME parts as set by the constructor */ 152 * Returns the MIME boundary string that is used to demarcate boundaries of
|
/frameworks/base/media/libstagefright/ |
AudioPlayer.cpp | 72 const char *mime; local 73 bool success = format->findCString(kKeyMIMEType, &mime); 75 CHECK(!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_RAW));
|
/packages/apps/Email/src/org/apache/james/mime4j/message/ |
Message.java | 37 * Represents a MIME message. The following code parses a stream into a
42 * new FileInputStream("mime.msg")));
58 * Parses the specified MIME message stream into a <code>Message</code>
|
/dalvik/libcore/luni/src/main/java/java/net/ |
ContentHandler.java | 23 * This class converts the content of a certain format (i.e. a MIME type) into a
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
Encodings.properties | 23 # 2) A comma separated list of the MIME names for the encoding, 24 # with the first one being the preferred MIME name. 32 # Means the Java name for the encoding is "ASCII". The MIME names for this 41 # <JAVA name encoding>, <PREFERRED name MIME>
|
/external/opencore/ |
README | 16 |-- baselibs [Contains basic libraries for data containers, MIME string
|
/external/opencore/nodes/pvloopbacknode/include/ |
pvmf_loopback_ioport.h | 56 // Capability mime strings
|
/external/opencore/nodes/pvmp3ffparsernode/include/ |
pvmf_mp3ffparser_defs.h | 49 // Capability mime strings
|
/external/opencore/nodes/pvmp4ffparsernode/include/ |
pvmf_mp4ffparser_defs.h | 40 // Capability mime strings
|
/external/opencore/pvmi/content_policy_manager/plugins/oma1/passthru/include/ |
pvmf_cpmplugin_passthru_oma1_config.h | 48 //Define the plugin mime type
|
/external/webkit/WebCore/platform/ |
ContentType.cpp | 43 // a MIME type can have one or more "param=value" after a semi-colon, and separated from each other by semi-colons
|
FileChooser.h | 68 // Acceptable MIME types. It's an 'accept' attribute value of the corresponding INPUT element.
|
/external/webkit/WebCore/platform/haiku/ |
MIMETypeRegistryHaiku.cpp | 61 // FIXME: Use the Haiku MIME registry
|
/external/webkit/WebKit/mac/Misc/ |
WebNSDictionaryExtras.h | 37 // Searches for the full MIME type, then the prefix (e.g., "text/" for "text/html")
|