HomeSort by relevance Sort by last modified time
    Searched full:mime (Results 176 - 200 of 1131) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/av/drm/libdrmframework/plugins/common/include/
IDrmEngine.h 165 * Retrieves the mime type embedded inside the original content
170 * Returns mime-type of the original content, such as "video/mpeg"
181 * @param[in] mimeType Mime type of the content or null.
323 * @param[in] mime Mime type of the protected content if it is
330 int fd, off64_t offset, off64_t length, const char* mime) = 0;
338 * @param[in] mime Mime type of the protected content if it is
345 const char* uri, const char* mime) = 0;
DrmEngineBase.h 84 int fd, off64_t offset, off64_t length, const char* mime);
88 const char* uri, const char* mime);
218 * Retrieves the mime type embedded inside the original content
223 * Returns mime-type of the original content, such as "video/mpeg"
234 * @param[in] mimeType Mime type of the content or null.
391 * @param[in] mime Mime type of the protected content
392 * drm plugin may do some optimization since the mime type is known.
399 const char* mime) {
423 * @param[in] mime Mime type of the protected content. The correspondin
    [all...]
  /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 &quot;URI&quot;, and its data i
    [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 89 AString mime; local
90 CHECK(format->findString("mime", &mime));
92 bool isAudio = !strncasecmp(mime.c_str(), "audio/", 6);
93 bool isVideo = !strncasecmp(mime.c_str(), "video/", 6);
116 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...]
FileSource.cpp 130 sp<DecryptHandle> FileSource::DrmInitialization(const char *mime) {
141 mFd, mOffset, mLength, mime);
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 137 if (dumpMap(out, curPrefix, "Full MIME Types:", innerPrefix,
141 if (dumpMap(out, curPrefix, "Base MIME Types:", innerPrefix,
145 if (dumpMap(out, curPrefix, "Wild MIME Types:", innerPrefix,
157 if (dumpMap(out, curPrefix, "MIME Typed Actions:", innerPrefix,
239 // If the intent includes a MIME type, then we want to collect all of
240 // the filters that match that MIME type.
283 // If the intent does not specify any data -- either a MIME type or
594 * All of the MIME types that have been registered, such as "image/jpeg",
601 * The base names of all of all fully qualified MIME types that have been
602 * 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);
  /frameworks/av/media/libmediaplayerservice/
Crypto.cpp 130 bool Crypto::requiresSecureDecoderComponent(const char *mime) const {
141 return mPlugin->requiresSecureDecoderComponent(mime);

Completed in 1875 milliseconds

1 2 3 4 5 6 78 91011>>