/external/chromium_org/chrome_frame/ |
protocol_sink_wrap.cc | 265 // RENDERER_TYPE_OTHER: if suggested mime type is not text/html. 266 // RENDERER_TYPE_UNDETERMINED: if suggested mime type is text/html. 395 // With not-so-well-written software (mime filters/protocols/protocol patchers) 443 // Suggested mime type is "text/html" and we have DEFAULT_RENDERER, 450 // Suggested mime type is not "text/html" - we are not interested in 454 // Suggested mime type is "text/html"; We will try to sniff the 877 // When IE switches into ChromeFrame, we report the Chrome mime type as [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallerInfo.java | 453 * and that the mime types match what we expect...) 464 // The logic here *used* to be based on the mime type of contactRef 466 // RawContacts.CONTACT_ID column). But looking up the mime type requires 477 // if (VDBG) Rlog.v(TAG, "- MIME type: " 484 // MIME type: Phone.CONTENT_ITEM_TYPE (= "vnd.android.cursor.item/phone_v2") 489 // MIME type: Data.CONTENT_TYPE (= "vnd.android.cursor.dir/data") 496 // MIME type: PhoneLookup.CONTENT_TYPE (= "vnd.android.cursor.dir/phone_lookup")
|
/frameworks/wilhelm/src/android/ |
android_AudioSfDecoder.cpp | 239 const char *mime; local 240 CHECK(meta->findCString(kKeyMIMEType, &mime)); 242 if (!strncasecmp("audio/", mime, 6)) { 243 if (isSupportedCodec(mime)) { 246 if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_RAW, mime)) { 790 bool AudioSfDecoder::isSupportedCodec(const char* mime) { 793 if (!strcasecmp(mime, kPlaybackOnlyCodecs[i])) {
|
/packages/apps/InCallUI/src/com/android/incallui/ |
CallerInfo.java | 450 * and that the mime types match what we expect...) 461 // The logic here *used* to be based on the mime type of contactRef 463 // RawContacts.CONTACT_ID column). But looking up the mime type requires 474 // if (VDBG) Rlog.v(TAG, "- MIME type: " 481 // MIME type: Phone.CONTENT_ITEM_TYPE (= "vnd.android.cursor.item/phone_v2") 486 // MIME type: Data.CONTENT_TYPE (= "vnd.android.cursor.dir/data") 493 // MIME type: PhoneLookup.CONTENT_TYPE (= "vnd.android.cursor.dir/phone_lookup")
|
/frameworks/av/media/libstagefright/wifi-display/source/ |
TSPacketizer.cpp | 97 CHECK(format->findString("mime", &mMIME)); 383 AString mime; local 384 CHECK(format->findString("mime", &mime)); 387 bool isVideo = !strncasecmp("video/", mime.c_str(), 6); 388 bool isAudio = !strncasecmp("audio/", mime.c_str(), 6); 402 if (!strcasecmp(mime.c_str(), MEDIA_MIMETYPE_VIDEO_AVC)) { 406 } else if (!strcasecmp(mime.c_str(), MEDIA_MIMETYPE_AUDIO_AAC)) { 410 } else if (!strcasecmp(mime.c_str(), MEDIA_MIMETYPE_AUDIO_RAW)) {
|
/libcore/luni/src/main/java/java/net/ |
URLConnection.java | 143 * A hashtable that maps the filename extension (key) to a MIME-type 320 * Returns the MIME-type of the content specified by the response header field 403 * determine the MIME-type according to a file extension. 405 * @return the file name map to determine the MIME-type. 671 * Determines the MIME-type of the given resource {@code url} by resolving 676 * the URL with the filename to get the MIME type. 685 * Determines the MIME-type of the resource represented by the input stream 884 * instances to determine the MIME-type according to a filename extension. 887 * the MIME table to be set. [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
message.py | 241 representation of the message. MIME headers (MIME-Version, 256 if 'MIME-Version' not in self: 257 self.add_header('MIME-Version', '1.0') 655 the Content-Type header is set, we'll always also add a MIME-Version 661 # Set the Content-Type, you get a MIME-Version 663 del self['mime-version'] 664 self['MIME-Version'] = '1.0' 790 main MIME type of "text", or the charset is not defined.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
message.py | 241 representation of the message. MIME headers (MIME-Version, 256 if 'MIME-Version' not in self: 257 self.add_header('MIME-Version', '1.0') 655 the Content-Type header is set, we'll always also add a MIME-Version 661 # Set the Content-Type, you get a MIME-Version 663 del self['mime-version'] 664 self['MIME-Version'] = '1.0' 790 main MIME type of "text", or the charset is not defined.
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
AwContentsTest.java | 231 final String mime = "text/html"; local 236 loadDataSync(awContents, loadHelper, emptyDoc, mime, false); 241 loadDataSync(awContents, loadHelper, imageDoc, mime, false);
|
/external/chromium_org/ppapi/api/ |
ppp_instance.idl | 210 * instance that was instantiated based on the MIME type of a DOMWindow 212 * to handle certain MIME types. If you haven't specifically registered to 213 * handle a MIME type or aren't positive this applies to you, your
|
/external/chromium_org/third_party/cld/encodings/public/ |
encodings.h | 227 // Return the "preferred MIME name" of an encoding. 230 // and as the "charset" parameter of a MIME Content-Type. 263 // Aliases include most mime-encoding names (e.g., "ISO-8859-7" for
|
/external/clang/tools/scan-view/ |
Reporter.py | 29 from email.mime.base import MIMEBase 30 from email.mime.multipart import MIMEMultipart 31 from email.mime.text import MIMEText
|
/frameworks/av/media/libstagefright/ |
AACWriter.cpp | 97 const char *mime; local 98 CHECK(meta->findCString(kKeyMIMEType, &mime)); 100 CHECK(!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AAC));
|
/frameworks/base/media/java/android/media/ |
MediaCodecInfo.java | 22 * here's how to find an encoder that supports a given MIME type: 78 * {@link MediaCodecInfo#getCapabilitiesForType getCapabilitiesForType()}, passing a MIME type. 287 * @param type The MIME type to query
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
VideoUtils.java | 147 String mime = format.getString(MediaFormat.KEY_MIME); local 151 if (mime.startsWith("audio/") && useAudio) { 153 } else if (mime.startsWith("video/") && useVideo) {
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
MessageAttachmentBar.java | 124 " contentUri=%s MIME=%s flags=%d", attachment.getName(), attachment.state, 224 final String mime = Utils.normalizeMimeType(mAttachment.getContentType()); local 282 .sendEvent("view_attachment", mime, action, mAttachment.size);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadStorageProvider.java | 300 // Provide fake MIME type so it's openable 355 * Remove file extension from name, but only if exact MIME type mapping 371 * Add file extension to name, but only if exact MIME type mapping exists.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_poplib.py | 24 MIME-Version: 1.0\r\n\ 196 'MIME-Version: 1.0', 'Subject: Dummy', 213 'MIME-Version: 1.0', 'Subject: Dummy', '',
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_poplib.py | 24 MIME-Version: 1.0\r\n\ 196 'MIME-Version: 1.0', 'Subject: Dummy', 213 'MIME-Version: 1.0', 'Subject: Dummy', '',
|
/prebuilts/tools/common/http-client/src/ |
httpcomponents-client-4.1.1-src.zip | |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/ |
NdefTagTester.java | 35 * constant mime type and payload.
|
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmInfoRequestTest.java | 104 fail("Mime type " + mimeType + " was accepted for DrmInfoRequest");
|
DrmInfoTest.java | 123 fail("Mime type " + mimeType + " was accepted for DrmInfo");
|
/external/bison/runtime-po/ |
ast.po | 15 "MIME-Version: 1.0\n"
|
da.po | 18 "MIME-Version: 1.0\n"
|