/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/ |
TutorialEN.java | 62 private OpenWnnEN mIme; 208 mIme = ime; 246 ImageSpan span = new ImageSpan(mIme, imageResourceId, 272 mIme.sendDownUpKeyEvents(-1); 273 mIme.tutorialDone();
|
/external/chromium/net/base/ |
filter_unittest.cc | 43 // Check that redundant gzip mime type removes only solo gzip encoding. 49 // First show it removes the gzip, given any gzip style mime type. 76 // Check to be sure that gzip can survive with other mime types. 79 filter_context.SetMimeType("other/mime"); 103 // Unchanged even with other mime types. 152 filter_context.SetMimeType("other/mime"); 218 // Firefox 3 does not decompress when we have unsupported mime types for 253 // Unsupported mime type with wrong file name, decompressed. 293 // From issue 16430 - Files with supported mime types should be decompressed,
|
/frameworks/base/docs/html/guide/topics/text/ |
copy-paste.jd | 173 you what MIME type or types are available. This metadata helps you decide if your application 204 particular, it contains an array of available MIME types for the clip's data. When you put a 206 see if they can handle any of available the MIME types. 251 The single MIME type in {@link android.content.ClipDescription} is 267 provided in <code>resolver</code> to retrieve the available MIME types from the 269 is not a <code>content:</code> URI, the method sets the MIME type to 284 The MIME type is set to {@link android.content.ClipDescription#MIMETYPE_TEXT_INTENT}. 352 {@link android.content.ClipData}, gets its MIME type from the 385 including the supported MIME types. 435 // get MIME types from provider. The clip object's label is "URI", and its data i [all...] |
/frameworks/av/drm/libdrmframework/plugins/common/include/ |
DrmEngineBase.h | 84 int fd, off64_t offset, off64_t length, const char* mime); 88 const char* uri, const char* mime); 221 * Retrieves the mime type embedded inside the original content 227 * Returns mime-type of the original content, such as "video/mpeg" 238 * @param[in] mimeType Mime type of the content or null. 395 * @param[in] mime Mime type of the protected content 396 * drm plugin may do some optimization since the mime type is known. 403 const char* mime) { 427 * @param[in] mime Mime type of the protected content. The correspondin [all...] |
/frameworks/base/drm/java/android/drm/ |
DrmManagerClient.java | 452 * Checks whether the given MIME type or path can be handled. 455 * @param mimeType MIME type of the object to be handled. 457 * @return True if the given MIME type or path can be handled; false if they cannot be handled. 467 * Checks whether the given MIME type or URI can be handled. 470 * @param mimeType MIME type of the object to be handled 472 * @return True if the given MIME type or URI can be handled; false if they cannot be handled. 538 * object, and so on) using the specified path or MIME type. At least one parameter must 542 * @param mimeType MIME type of the content or null. 555 * object, and so on) using the specified URI or MIME type. At least one parameter must 559 * @param mimeType MIME type of the content or null 589 String mime = null; local [all...] |
/external/webkit/Source/WebKit/mac/Plugins/ |
WebBasePluginPackage.mm | 189 // Check if the MIME types are claimed in a plist in the user's preferences directory. 212 NSString *MIME, *description; 215 while ((MIME = [keyEnumerator nextObject]) != nil) { 216 MIMEDictionary = [MIMETypes objectForKey:MIME]; 218 // FIXME: Consider storing disabled MIME types. 239 mimeClassInfo.type = String(MIME).lower();
|
/frameworks/av/cmds/stagefright/ |
codec.cpp | 91 AString mime; local 92 CHECK(format->findString("mime", &mime)); 94 bool isAudio = !strncasecmp(mime.c_str(), "audio/", 6); 95 bool isVideo = !strncasecmp(mime.c_str(), "video/", 6); 118 looper, mime.c_str(), false /* encoder */);
|
/frameworks/wilhelm/tests/examples/ |
slesTestBassBoostPath.cpp | 65 SLDataFormat_MIME mime; local 131 mime.formatType = SL_DATAFORMAT_MIME; 132 /* this is how ignored mime information is specified, according to OpenSL ES spec 134 mime.mimeType = (SLchar*)NULL; 135 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 137 audioSource.pFormat = (void*)&mime;
|
slesTestEqFdPath.cpp | 70 SLDataFormat_MIME mime; local 136 mime.formatType = SL_DATAFORMAT_MIME; 137 /* this is how ignored mime information is specified, according to OpenSL ES spec 139 mime.mimeType = (SLchar*)NULL; 140 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 142 audioSource.pFormat = (void*)&mime;
|
slesTestEqOutputPath.cpp | 70 SLDataFormat_MIME mime; local 143 mime.formatType = SL_DATAFORMAT_MIME; 144 /* this is how ignored mime information is specified, according to OpenSL ES spec 146 mime.mimeType = (SLchar*)NULL; 147 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 149 audioSource.pFormat = (void*)&mime;
|
slesTestVirtualizerPath.cpp | 66 SLDataFormat_MIME mime; local 132 mime.formatType = SL_DATAFORMAT_MIME; 133 /* this is how ignored mime information is specified, according to OpenSL ES spec 135 mime.mimeType = (SLchar*)NULL; 136 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 138 audioSource.pFormat = (void*)&mime;
|
/frameworks/wilhelm/tests/mimeUri/ |
slesTestPlayStreamType.cpp | 59 SLDataFormat_MIME mime; local 118 mime.formatType = SL_DATAFORMAT_MIME; 119 /* this is how ignored mime information is specified, according to OpenSL ES spec 121 mime.mimeType = (SLchar*)NULL; 122 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 124 audioSource.pFormat = (void*)&mime;
|
slesTestPlayUri2.cpp | 74 SLDataFormat_MIME mime; local 127 mime.formatType = SL_DATAFORMAT_MIME; 128 /* this is how ignored mime information is specified, according to OpenSL ES spec 130 mime.mimeType = (SLchar*)NULL; 131 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED; 133 audioSource.pFormat = (void *)&mime;
|
/frameworks/av/media/libstagefright/ |
AVIExtractor.cpp | 112 const char *mime; local 113 CHECK(mTrack.mMeta->findCString(kKeyMIMEType, &mime)); 115 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_MPEG)) { 618 const char *mime = NULL; local 622 mime = GetMIMETypeForHandler(handler); 624 if (mime && strncasecmp(mime, "video/", 6)) { 628 if (mime == NULL) { 638 if (mime && strncasecmp(mime, "audio/", 6)) 920 AString mime = tmp; local [all...] |
/frameworks/base/services/java/com/android/server/ |
IntentResolver.java | 149 if (dumpMap(out, curPrefix, "Full MIME Types:", innerPrefix, 153 if (dumpMap(out, curPrefix, "Base MIME Types:", innerPrefix, 157 if (dumpMap(out, curPrefix, "Wild MIME Types:", innerPrefix, 169 if (dumpMap(out, curPrefix, "MIME Typed Actions:", innerPrefix, 251 // If the intent includes a MIME type, then we want to collect all of 252 // the filters that match that MIME type. 295 // If the intent does not specify any data -- either a MIME type or 736 * All of the MIME types that have been registered, such as "image/jpeg", 742 * The base names of all of all fully qualified MIME types that have been 743 * registered, such as "image" or "*". Wild card MIME types such a [all...] |
IntentResolverOld.java | 138 if (dumpMap(out, curPrefix, "Full MIME Types:", innerPrefix, 142 if (dumpMap(out, curPrefix, "Base MIME Types:", innerPrefix, 146 if (dumpMap(out, curPrefix, "Wild MIME Types:", innerPrefix, 158 if (dumpMap(out, curPrefix, "MIME Typed Actions:", innerPrefix, 240 // If the intent includes a MIME type, then we want to collect all of 241 // the filters that match that MIME type. 284 // If the intent does not specify any data -- either a MIME type or 595 * All of the MIME types that have been registered, such as "image/jpeg", 602 * The base names of all of all fully qualified MIME types that have been 603 * registered, such as "image" or "*". Wild card MIME types such a [all...] |
/external/chromium/chrome/browser/ |
plugin_data_remover.h | 27 // its MIME type. This method sets a different MIME type in order to call a
|
/external/chromium/chrome/browser/ui/gtk/ |
tab_contents_drag_source.h | 74 // The mime type for the file contents of the current drag (if any). 91 // The file mime type for a drag-out download.
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
imageinfo.js | 22 var mime = http.getResponseHeader("Content-Type"); 24 tags["mimeType"] = mime;
|
/external/chromium/chrome/common/extensions/docs/static/ |
npapi.html | 62 Create an HTML file that loads your plugin by mime-type. 63 Assuming your mime-type is "application/x-my-extension":
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
MediaPlayerPrivateQt.cpp | 76 QString mime = types.at(i); local 77 if (mime.startsWith(QString::fromLatin1("audio/")) || mime.startsWith(QString::fromLatin1("video/"))) 78 supported.add(mime); 82 MediaPlayer::SupportsType MediaPlayerPrivateQt::supportsType(const String& mime, const String& codec) 84 if (!mime.startsWith("audio/") && !mime.startsWith("video/")) 97 if (QMediaPlayer::hasSupport(mime, codecListTrimmed) >= QtMultimediaKit::ProbablySupported)
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebResource.h | 50 @param MIMEType The MIME type of the resource. 71 @result The MIME type of the resource.
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
lighttpd.conf | 35 # Use the "Content-Type" extended attribute to obtain mime type if possible 85 # to override mime type for wrong-content-type.manifest.
|
/frameworks/av/drm/libdrmframework/include/ |
DrmManager.h | 115 int uniqueId, int fd, off64_t offset, off64_t length, const char* mime); 117 DecryptHandle* openDecryptSession(int uniqueId, const char* uri, const char* mime);
|
DrmManagerService.h | 102 int uniqueId, int fd, off64_t offset, off64_t length, const char *mime); 105 int uniqueId, const char* uri, const char* mime);
|