HomeSort by relevance Sort by last modified time
    Searched refs:mContentType (Results 1 - 25 of 32) sorted by null

1 2

  /tools/tradefederation/core/src/com/android/tradefed/result/
LogDataType.java 61 private final String mContentType;
69 mContentType = contentType;
77 return mContentType;
  /frameworks/base/core/java/android/print/
PrintDocumentInfo.java 123 private int mContentType;
141 mContentType = prototype.mContentType;
154 mContentType = parcel.readInt();
189 return mContentType;
221 parcel.writeInt(mContentType);
230 result = prime * result + mContentType;
252 if (mContentType != other.mContentType) {
270 builder.append(", contentType=").append(contentTypeToString(mContentType));
    [all...]
  /frameworks/av/media/libaaudio/src/core/
AAudioStreamParameters.cpp 47 mContentType = other.mContentType;
135 switch (mContentType) {
143 ALOGE("content type not valid = %d", mContentType);
175 ALOGD("mContentType = %6d", mContentType);
AAudioStreamParameters.h 100 return mContentType;
104 mContentType = contentType;
145 aaudio_content_type_t mContentType = AAUDIO_UNSPECIFIED;
AudioStream.cpp 90 mContentType = builder.getContentType();
91 if (mContentType == AAUDIO_UNSPECIFIED) {
92 mContentType = AAUDIO_CONTENT_TYPE_MUSIC;
118 mUsage, mContentType, mInputPreset);
AudioStream.h 230 return mContentType;
546 mContentType = contentType;
573 aaudio_content_type_t mContentType = AAUDIO_UNSPECIFIED;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Multipart.java 26 protected String mContentType;
41 return mContentType;
  /tools/tradefederation/core/src/com/android/tradefed/util/
IEmail.java 58 private String mContentType = PLAIN;
113 mContentType = contentType;
145 return mContentType;
149 return HTML.equals(mContentType);
  /art/tools/ahat/src/main/com/android/ahat/
StaticHandler.java 29 private String mContentType;
33 mContentType = contentType;
48 exchange.getResponseHeaders().add("Content-Type", mContentType);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
MessagePartData.java 93 private String mContentType;
149 mContentType = contentType;
230 mContentType = cursor.getString(INDEX_CONTENT_TYPE);
241 values.put(PartColumns.CONTENT_TYPE, mContentType);
266 if (mContentType != null) {
267 insert.bindString(INDEX_CONTENT_TYPE, mContentType);
296 return ContentType.isTextType(mContentType);
300 return ContentType.isImageType(mContentType);
304 return ContentType.isMediaType(mContentType);
308 return ContentType.isVCardType(mContentType);
    [all...]
GalleryGridItemData.java 60 private String mContentType;
72 mContentType = null;
85 mContentType = cursor.getString(INDEX_MIME_TYPE);
114 return new MediaPickerMessagePartData(startRect, mContentType,
126 return mContentType;
  /frameworks/base/media/java/android/media/
AudioAttributes.java 376 private int mContentType = CONTENT_TYPE_UNKNOWN;
391 return mContentType;
477 private int mContentType = CONTENT_TYPE_UNKNOWN;
501 mContentType = aa.mContentType;
514 aa.mContentType = mContentType;
591 mContentType = contentType;
681 mContentType = CONTENT_TYPE_SPEECH;
687 mContentType = CONTENT_TYPE_SONIFICATION
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessageMime.java 37 public String mContentType = null; /* The mime type, e.g. text/plain */
83 if (mContentType != null) {
84 sb.append("Content-Type: ").append(mContentType);
104 if (mContentType != null && (mContentType.toUpperCase().contains("TEXT")
105 || mContentType.toUpperCase().contains("SMIL"))) {
128 if (mContentType != null && mContentType.toUpperCase().contains("TEXT")) {
134 } else if (mContentType != null && mContentType.toUpperCase().contains("/SMIL"))
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMultipart.java 32 protected String mContentType;
44 this.mContentType = contentType;
77 return mContentType;
82 mContentType = String.format("multipart/%s; boundary=\"%s\"", subType, mBoundary);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriImage.java 50 private final String mContentType;
66 mContentType = contentType;
99 if (MIME_TYPE_JPEG.equalsIgnoreCase(mContentType)) {
122 if (MIME_TYPE_JPEG.equalsIgnoreCase(mContentType)) {
216 if (BitmapUtils.isSupportedByRegionDecoder(mContentType)) {
257 if (mContentType != null) {
258 details.addDetail(MediaDetails.INDEX_MIMETYPE, mContentType);
270 return mContentType;
  /frameworks/support/media/src/main/java/androidx/media/
AudioAttributesCompat.java 243 int mContentType = CONTENT_TYPE_UNKNOWN;
349 return mContentType;
400 bundle.putInt(AUDIO_ATTRIBUTES_CONTENT_TYPE, mContentType);
432 attr.mContentType = contentType;
460 private int mContentType = CONTENT_TYPE_UNKNOWN;
483 mContentType = aa.mContentType;
505 .setContentType(mContentType)
517 aac.mContentType = mContentType;
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
AttachmentInfo.java 78 public final String mContentType;
103 this(context, info.mId, info.mSize, info.mName, info.mContentType, info.mAccountKey,
110 mContentType = AttachmentUtilities.inferMimeType(fileName, mimeType);
126 if ((!MimeUtility.mimeTypeMatches(mContentType,
128 (MimeUtility.mimeTypeMatches(mContentType,
203 intent.setDataAndType(contentUri, mContentType);
247 return "{Attachment " + mId + ":" + mName + "," + mContentType + "," + mSize + "}";
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MessageTestUtils.java 108 private final String mContentType;
127 mContentType = mimeType + "; boundary=" + boundary;
148 final MimeMultipart mp = new MimeMultipart(mContentType);
  /packages/apps/Messaging/src/com/android/messaging/sms/
DatabaseMessages.java 579 public String mContentType;
597 mContentType = cursor.getString(INDEX_CONTENT_TYPE);
608 if (ContentType.isImageType(mContentType)) {
610 } else if (ContentType.isVideoType(mContentType)) {
700 mContentType = opt.outMimeType;
703 if (TextUtils.isEmpty(mContentType)) {
706 mContentType = extractContentType(context, uri);
740 mContentType =
787 return ContentType.TEXT_PLAIN.equals(mContentType)
788 || ContentType.APP_SMIL.equals(mContentType)
    [all...]
  /frameworks/base/core/java/android/app/usage/
UsageEvents.java 222 public String mContentType;
263 mContentType = orig.mContentType;
524 p.writeString(event.mContentType);
560 eventOut.mContentType = null;
574 eventOut.mContentType = p.readString();
  /frameworks/av/media/libaaudio/examples/utils/
AAudioArgsParser.h 157 return mContentType;
161 mContentType = contentType;
209 s_setContentType(builder, mContentType);
231 aaudio_content_type_t mContentType = AAUDIO_UNSPECIFIED;
  /tools/tradefederation/core/src/com/android/tradefed/util/net/
HttpHelper.java 347 String mContentType;
351 mContentType = contentType;
365 HttpURLConnection conn = createConnection(new URL(getUrl()), "POST", mContentType);
  /frameworks/base/core/java/com/android/internal/app/
ResolverComparator.java 102 private String mContentType;
183 mContentType = intent.getType();
252 .getOrDefault(mContentType, 0);
369 mUsm.reportChooserSelection(packageName, userId, mContentType, mAnnotations, action);
  /packages/apps/Contacts/src/com/android/contacts/
ShortcutIntentBuilder.java 155 protected String mContentType;
167 mContentType = mContext.getContentResolver().getType(mUri);
218 createContactShortcutIntent(mUri, mContentType, mDisplayName, mLookupKey, mBitmapData);
  /packages/apps/Messaging/src/com/android/messaging/util/
ImageUtils.java 409 private final String mContentType;
465 mContentType = contentType;
474 return ImageUtils.isGif(mContentType, mUri) ? resizeGifImage() : resizeStaticImage();
    [all...]

Completed in 722 milliseconds

1 2