HomeSort by relevance Sort by last modified time
    Searched full:mime (Results 201 - 225 of 1798) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 74 const char *mime; local
75 CHECK(meta->findCString(kKeyMIMEType, &mime));
79 if (!strncasecmp(mime, "audio/", 6)) {
83 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_VORBIS)) {
89 } else if (!strncasecmp(mime, "video/", 6)) {
  /packages/apps/Exchange/src/com/android/exchange/service/
EasMailboxSyncHandler.java 115 // window, body preference type (HTML for EAS 12.0 and later; MIME for EAS 2.5), and
118 // so we turn MIME support off. Note that we are always using EAS 2.5 if there are fetch
151 // Use MIME data for EAS 2.5
158 // MIME, to guarantee we'll get usable text body. This also means we should NOT ask for
170 * message's MIME data).
  /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/chromium_org/ppapi/cpp/dev/
file_chooser_dev.h 39 /// @param accept_types A comma-separated list of MIME types and file
43 /// MIME types and file extensions. If a string in the comma-separated list
45 /// extension, otherwise it is interpreted as a MIME-type. An empty string or
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginData.cpp 132 const MimeClassInfo& mime = plugins[i].mimes[j]; local
133 const Vector<String>& extensions = mime.extensions;
136 return mime.type;
DOMPlugin.cpp 64 const MimeClassInfo& mime = pluginInfo().mimes[index]; local
68 if (mimes[i] == mime && m_pluginData->mimePluginIndices()[i] == m_index)
  /external/chromium_org/third_party/WebKit/public/web/
WebFileChooserParams.h 53 // This contains MIME type strings such as "audio/*" "text/plain" or file
55 // The dialog may restrict selectable files to files with the specified MIME
58 // it contains only lower-cased MIME type strings and file extensions.
  /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
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.cpp 52 const char *mime; local
53 CHECK(format->findCString(kKeyMIMEType, &mime));
54 CHECK(!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_RAW));
298 const char *mime; local
299 CHECK(format->findCString(kKeyMIMEType, &mime));
300 CHECK(!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_RAW));
  /frameworks/wilhelm/tests/examples/
slesTestPlayFdPath.cpp 61 SLDataFormat_MIME mime; local
120 mime.formatType = SL_DATAFORMAT_MIME;
121 /* this is how ignored mime information is specified, according to OpenSL ES spec
123 mime.mimeType = (SLchar*)NULL;
124 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
126 audioSource.pFormat = (void*)&mime;
  /frameworks/wilhelm/tests/mimeUri/
slesTest_playStates.cpp 59 SLDataFormat_MIME mime; local
113 mime.formatType = SL_DATAFORMAT_MIME;
114 /* this is how ignored mime information is specified, according to OpenSL ES spec
116 mime.mimeType = (SLchar*)NULL;
117 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
119 audioSource.pFormat = (void*)&mime;
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MessageTestUtils.java 72 * @param mimeType MIME type of body part
88 * @param mimeType MIME type of text
112 * Create builder object with MIME type and dummy boundary string.
114 * @param mimeType MIME type of this Multipart
121 * Create builder object with MIME type and boundary string.
123 * @param mimeType MIME type of this Multipart
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapter/src/main/java/com/example/android/network/sync/basicsyncadapter/provider/
FeedContract.java 51 * MIME type for lists of entries.
56 * MIME type for individual entries.
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
ForegroundDispatch.java 33 * An example of how to use the NFC foreground dispatch APIs. This will intercept any MIME data
60 // Setup an intent filter for all MIME based dispatches
  /external/chromium_org/content/common/
plugin_list.h 74 // the list so that it can override the MIME types of older registrations.
91 // In Windows plugins, the mime types are passed as a specially formatted list
110 // the given url and mime type (including disabled plugins, for
111 // which |info->enabled| is false). The mime type which corresponds
115 // returns plugins which support wildcard mime types (* as the mime
195 // be set to the MIME type if found. The MIME type which corresponds to the
  /external/chromium_org/net/android/
network_library.h 66 // Get the mime type (if any) that is associated with the file extension.
67 // Returns true if a corresponding mime type exists.
  /external/chromium_org/net/url_request/
url_request_file_job.h 64 // Mime type associated with the file.
67 // obtaining of the mime type was successful.
  /frameworks/base/docs/html/guide/topics/manifest/
data-element.jd 9 android:<a href="#mime">mimeType</a>="<i>string</i>"
22 be just a data type (the <code><a href="{@docRoot}guide/topics/manifest/data-element.html#mime">mimeType</a></code> attribute),
83 <dt><a name="mime"></a>{@code android:mimeType}</dt>
84 <dd>A MIME media type, such as {@code image/jpeg} or {@code audio/mpeg4-generic}.
91 <p class="note">Note: MIME type matching in the Android framework is
92 case-sensitive, unlike formal RFC MIME types. As a result, you should always
93 specify MIME types using lowercase letters.</p>
152 If the filter has a data type set (the <code><a href="{@docRoot}guide/topics/manifest/data-element.html#mime">mimeType</a></code>
  /frameworks/native/include/media/hardware/
CryptoAPI.h 64 // media data of the given mime type.
65 virtual bool requiresSecureDecoderComponent(const char *mime) const = 0;

Completed in 1440 milliseconds

1 2 3 4 5 6 7 891011>>