Searched defs:mimeType (Results 101 - 108 of 108) sorted by relevance

12345

/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java871 String mimeType,
879 mimeType,
868 onDownloadStart(String url, String userAgent, String contentDisposition, String mimeType, long contentLength) argument
H A DWebViewChromium.java616 private static String fixupMimeType(String mimeType) { argument
617 return TextUtils.isEmpty(mimeType) ? "text/html" : mimeType;
637 public void loadData(String data, String mimeType, String encoding) { argument
639 fixupData(data), fixupMimeType(mimeType), isBase64Encoded(encoding)));
643 public void loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, argument
646 mimeType = fixupMimeType(mimeType);
656 data, mimeType, isBase64, baseUrl, historyUrl, isBase64 ? null : encoding);
664 Base64.encodeToString(data.getBytes("utf-8"), Base64.DEFAULT), mimeType,
[all...]
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp4577 const char *mimeType, bool queryDecoders,
4579 return QueryCodecs(omx, mimeType, queryDecoders, false /*hwCodecOnly*/, results);
4575 QueryCodecs( const sp<IOMX> &omx, const char *mimeType, bool queryDecoders, Vector<CodecCapabilities> *results) argument
H A DMPEG4Extractor.cpp4234 const sp<DataSource> &source, String8 *mimeType, float *confidence) {
4248 *mimeType = MEDIA_MIMETYPE_CONTAINER_MPEG4;
4294 const sp<DataSource> &source, String8 *mimeType, float *confidence,
4391 *mimeType = MEDIA_MIMETYPE_CONTAINER_MPEG4;
4405 const sp<DataSource> &source, String8 *mimeType, float *confidence,
4407 if (BetterSniffMPEG4(source, mimeType, confidence, meta)) {
4411 if (LegacySniffMPEG4(source, mimeType, confidence)) {
4233 LegacySniffMPEG4( const sp<DataSource> &source, String8 *mimeType, float *confidence) argument
4293 BetterSniffMPEG4( const sp<DataSource> &source, String8 *mimeType, float *confidence, sp<AMessage> *meta) argument
4404 SniffMPEG4( const sp<DataSource> &source, String8 *mimeType, float *confidence, sp<AMessage> *meta) argument
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java1924 private static boolean availableMimeTypeForExternalSource(String mimeType) { argument
1925 if (MEDIA_MIMETYPE_TEXT_SUBRIP.equals(mimeType)) {
2079 * @param mimeType The mime type of the file. Must be one of the mime types listed above.
2081 * @throws IllegalArgumentException if the mimeType is not supported.
2084 public void addTimedTextSource(String path, String mimeType) argument
2086 if (!availableMimeTypeForExternalSource(mimeType)) {
2087 final String msg = "Illegal mimeType for timed text source: " + mimeType;
2095 addTimedTextSource(fd, mimeType);
2113 * @param mimeType Th
2118 addTimedTextSource(Context context, Uri uri, String mimeType) argument
2160 addTimedTextSource(FileDescriptor fd, String mimeType) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java907 * @param mimeType the MIME type of the data, e.g. 'text/html'
910 public void loadData(String data, String mimeType, String encoding) { argument
913 mProvider.loadData(data, mimeType, encoding);
936 * @param mimeType the MIMEType of the data, e.g. 'text/html'. If null,
943 String mimeType, String encoding, String historyUrl) {
946 mProvider.loadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl);
942 loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) argument
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h315 SLchar * mimeType; member in struct:SLDataFormat_MIME_
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h334 XAchar * mimeType; member in struct:XADataFormat_MIME_
1373 XAchar * mimeType,

Completed in 733 milliseconds

12345