Searched defs:mMimeType (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DDataUri.java33 private String mMimeType; field in class:DataUri
53 mMimeType = contentType.substring(0, semiIndex);
55 mMimeType = contentType;
68 return mMimeType;
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DDataAction.java55 private final String mMimeType; field in class:DataAction
75 mMimeType = item.getMimeType();
247 return mMimeType;
312 if (!ContactsUtils.shouldCollapse(mMimeType, mBody, that.mMimeType, that.mBody)) {
315 if (!TextUtils.equals(mMimeType, that.mMimeType)
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
H A DDownloadItem.java41 private String mMimeType; field in class:DownloadItem
76 mMimeType = mimeType;
129 mFileName, mMimeType);
147 return mMimeType;
H A DDownloadList.java96 private String mMimeType; field in class:DownloadList.SelectionObjAttrs
99 mMimeType = mimeType;
105 return mMimeType;
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DBaseImage.java49 protected String mMimeType; field in class:BaseImage
67 mMimeType = mimeType;
133 return mMimeType;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInstallWidgetReceiver.java77 private String mMimeType; field in class:InstallWidgetReceiver.WidgetListAdapter
88 mMimeType = mimeType;
189 final PendingAddWidgetInfo createInfo = new PendingAddWidgetInfo(widgetInfo, mMimeType,
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DSharePopup.java58 private String mMimeType; field in class:SharePopup
112 mMimeType = mContext.getContentResolver().getType(mUri);
136 if (mMimeType.startsWith("video/")) {
182 if (mMimeType.startsWith("video/")) {
240 new Intent(Intent.ACTION_SEND).setType(mMimeType), 0);
277 intent.setType(mMimeType);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadInfo.java70 info.mMimeType = getString(Downloads.Impl.COLUMN_MIME_TYPE);
200 public String mMimeType; field in class:DownloadInfo
502 pw.printPair("mMimeType", mMimeType);
H A DDownloadThread.java89 public String mMimeType; field in class:DownloadThread.State
104 mMimeType = Intent.normalizeMimeType(info.mMimeType);
227 state.mNewUri, state.mMimeType, errorMsg);
451 if (!DownloadDrmHelper.isDrmConvertNeeded(mInfo.mMimeType)) {
568 if (DownloadDrmHelper.isDrmConvertNeeded(state.mMimeType)) {
569 mDrmConvertSession = DrmConvertSession.open(mContext, state.mMimeType);
572 + state.mMimeType + " can not be converted.");
582 state.mMimeType,
612 if (state.mMimeType !
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DVideoEditorProject.java86 private final String mMimeType; field in class:VideoEditorProject.Download
100 mMimeType = mimeType;
116 return mMimeType;
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java1130 public String mMimeType; field in class:EmailContent.Attachment
1281 mMimeType = cursor.getString(CONTENT_MIME_TYPE_COLUMN);
1301 values.put(AttachmentColumns.MIME_TYPE, mMimeType);
1328 dest.writeString(mMimeType);
1353 mMimeType = in.readString();
1390 return "[" + mFileName + ", " + mMimeType + ", " + mSize + ", " + mContentId + ", "

Completed in 475 milliseconds