Searched defs:mimeType (Results 1 - 25 of 122) sorted by last modified time

12345

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h334 XAchar * mimeType; member in struct:XADataFormat_MIME_
1373 XAchar * mimeType,
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h315 SLchar * mimeType; member in struct:SLDataFormat_MIME_
/frameworks/support/v4/api21/android/support/v4/provider/
H A DDocumentsContractApi21.java31 public static Uri createFile(Context context, Uri self, String mimeType, argument
33 return DocumentsContract.createDocument(context.getContentResolver(), self, mimeType,
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java416 * @param mimeType mimetype of the shared data
420 public IntentBuilder setType(String mimeType) { argument
421 mIntent.setType(mimeType);
/frameworks/support/v4/java/android/support/v4/provider/
H A DDocumentFile.java153 * @param mimeType MIME type of new document, such as {@code image/png} or
164 public abstract DocumentFile createFile(String mimeType, String displayName); argument
H A DRawDocumentFile.java36 public DocumentFile createFile(String mimeType, String displayName) { argument
38 final String extension = MimeTypeMap.getSingleton().getExtensionFromMimeType(mimeType);
H A DSingleDocumentFile.java34 public DocumentFile createFile(String mimeType, String displayName) { argument
H A DTreeDocumentFile.java33 public DocumentFile createFile(String mimeType, String displayName) { argument
34 final Uri result = DocumentsContractApi21.createFile(mContext, mUri, mimeType, displayName);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java273 * @param mimeType The mime type of the content, or null if unknown.
287 public void play(Uri contentUri, String mimeType, Bundle metadata, argument
289 playOrEnqueue(contentUri, mimeType, metadata, positionMillis,
307 * @param mimeType The mime type of the content, or null if unknown.
322 public void enqueue(Uri contentUri, String mimeType, Bundle metadata, argument
324 playOrEnqueue(contentUri, mimeType, metadata, positionMillis,
328 private void playOrEnqueue(Uri contentUri, String mimeType, Bundle metadata, argument
340 intent.setDataAndType(contentUri, mimeType);
/frameworks/support/documents-archive/src/android/support/provider/
H A DDocumentArchiveHelper.java218 public boolean isSupportedArchiveType(String mimeType) { argument
220 if (zipMimeType.equals(mimeType)) {
279 final String mimeType = cursor.getString(cursor.getColumnIndex(
281 Preconditions.checkArgument(isSupportedArchiveType(mimeType),
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DWapPushOverSms.java197 String mimeType = pduDecoder.getValueString();
206 if (mimeType != null && mimeType.equals(WspTypeDecoder.CONTENT_TYPE_B_PUSH_CO)) {
250 String contentType = ((mimeType == null) ?
251 Long.toString(binaryContentType) : mimeType);
259 result.mimeType = mimeType;
336 if (result.mimeType == null) {
342 intent.setType(result.mimeType);
369 handler.dispatchIntent(intent, getPermissionForType(result.mimeType),
554 getPermissionForType(String mimeType) argument
564 getAppOpsPermissionForIntent(String mimeType) argument
578 String mimeType; field in class:WapPushOverSms.DecodedResult
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java44 * @param mimeType Mimetype of content that shall be converted.
47 public static DrmConvertSession open(Context context, String mimeType) { argument
50 if (context != null && mimeType != null && !mimeType.equals("")) {
54 convertSessionId = drmClient.openConvertSession(mimeType);
56 Log.w(TAG, "Conversion of Mimetype: " + mimeType
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java1825 final String mimeType, ContentValues contentValues) {
1826 if (!sAllowedAndroidPropertySet.contains(mimeType)) {
1854 mBuilder.append(mimeType); // Should not be encoded.
1824 appendAndroidSpecificProperty( final String mimeType, ContentValues contentValues) argument
H A DVCardEntry.java1439 public AndroidCustomData(String mimeType, List<String> dataList) { argument
1440 mMimeType = mimeType;
1445 String mimeType;
1449 mimeType = null;
1452 mimeType = list.get(0);
1457 mimeType = list.get(0);
1461 return new AndroidCustomData(mimeType, dataList);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardExporterTests.java1042 private String getAndroidPropValue(final String mimeType, String value, Integer type) { argument
1043 return getAndroidPropValue(mimeType, value, type, null);
1046 private String getAndroidPropValue(final String mimeType, String value, argument
1048 return (mimeType + ";" + value + ";"
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DContactEntry.java33 public ContentValuesBuilder addContentValues(String mimeType) { argument
35 contentValues.put(Data.MIMETYPE, mimeType);
H A DContentValuesVerifierElem.java35 public ContentValuesBuilder addExpected(String mimeType) { argument
37 contentValues.put(Data.MIMETYPE, mimeType);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java635 public WifiConfiguration buildWifiConfig(String uriString, String mimeType, byte[] data) { argument
636 if (mimeType.equals(ConfigBuilder.WifiConfigType)) {
645 Log.i(TAG, "Unknown wi-fi config type: " + mimeType);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java84 public static boolean isImageMimeType(String mimeType) { argument
85 return mimeType != null && mimeType.startsWith("image/");
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java131 String mimeType, Bundle opts, ICancellationSignal signal)
133 return MockContentProvider.this.openTypedAssetFile(url, mimeType, opts);
249 public AssetFileDescriptor openTypedAssetFile(Uri url, String mimeType, Bundle opts) { argument
130 openTypedAssetFile(String callingPackage, Uri url, String mimeType, Bundle opts, ICancellationSignal signal) argument
H A DMockIContentProvider.java109 public AssetFileDescriptor openTypedAssetFile(String callingPackage, Uri url, String mimeType, argument
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java105 public void loadData(String data, String mimeType, String encoding) { argument
109 String mimeType, String encoding, String failUrl) {
108 loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String failUrl) argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java1588 public WifiConfiguration buildWifiConfig(String uriString, String mimeType, byte[] data) { argument
1590 return mService.buildWifiConfig(uriString, mimeType, data);
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/model/
H A DDocumentInfoTest.java54 private static DocumentInfo createDocInfo(String authority, String docId, String mimeType) { argument
58 doc.mimeType = mimeType;

Completed in 541 milliseconds

12345