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

/packages/services/Telephony/src/com/android/phone/vvm/omtp/imap/
H A DVoicemailPayload.java23 private final String mMimeType; field in class:VoicemailPayload
27 mMimeType = mimeType;
36 return mMimeType;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DSuppressNotificationReceiver.java45 private String mMimeType; field in class:SuppressNotificationReceiver
63 mMimeType = account.mimeType;
65 filter.addDataType(mMimeType);
67 LogUtils.wtf(LOG_TAG, "Malformed mimetype: %s", mMimeType);
94 mMimeType = null;
105 return mContext != null && TextUtils.equals(account.mimeType, mMimeType);
/packages/apps/Camera2/src/com/android/camera/data/
H A DFilmstripItemData.java38 private final String mMimeType; field in class:FilmstripItemData
62 mMimeType = mimeType;
89 return mMimeType;
159 sb.append(mMimeType);
186 private String mMimeType = ""; field in class:FilmstripItemData.Builder
204 mMimeType,
220 builder.mMimeType = data.getMimeType();
242 mMimeType = mimeType;
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DDataAction.java58 private final String mMimeType; field in class:DataAction
81 mMimeType = item.getMimeType();
265 return mMimeType;
332 if (!MoreContactUtils.shouldCollapse(mMimeType, mBody, that.mMimeType, that.mBody)) {
335 if (!TextUtils.equals(mMimeType, that.mMimeType)
H A DExpandingEntryCardView.java1056 private final String mMimeType; field in class:ExpandingEntryCardView.EntryContextMenuInfo
1064 mMimeType = mimeType;
1078 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 DDownloadThread.java143 public String mMimeType; field in class:DownloadThread.DownloadInfoDelta
164 mMimeType = info.mMimeType;
178 values.put(Downloads.Impl.COLUMN_MIME_TYPE, mMimeType);
348 || DownloadDrmHelper.isDrmConvertNeeded(mInfoDelta.mMimeType)) {
387 mInfoDelta.mMimeType);
560 if (DownloadDrmHelper.isDrmConvertNeeded(mInfoDelta.mMimeType)) {
562 out = new DrmOutputStream(drmClient, outPfd, mInfoDelta.mMimeType);
803 mInfo.mHint, contentDisposition, contentLocation, mInfoDelta.mMimeType,
811 if (mInfoDelta.mMimeType
[all...]
H A DDownloadInfo.java71 info.mMimeType = Intent.normalizeMimeType(getString(Downloads.Impl.COLUMN_MIME_TYPE));
157 public String mMimeType; field in class:DownloadInfo
418 pw.printPair("mMimeType", mMimeType);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java1356 public String mMimeType; field in class:EmailContent.Attachment
1546 mMimeType = cursor.getString(CONTENT_MIME_TYPE_COLUMN);
1567 values.put(AttachmentColumns.MIME_TYPE, mMimeType);
1595 dest.writeString(mMimeType);
1621 mMimeType = in.readString();
1659 return "[" + mFileName + ", " + mMimeType + ", " + mSize + ", " + mContentId + ", "

Completed in 510 milliseconds