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

1 2 3 4

  /frameworks/base/core/java/android/provider/
SearchIndexablesContract.java 150 public static final String MIME_TYPE = ContentResolver.CURSOR_DIR_BASE_TYPE +
172 public static final String MIME_TYPE = ContentResolver.CURSOR_DIR_BASE_TYPE +
225 public static final String MIME_TYPE = ContentResolver.CURSOR_DIR_BASE_TYPE +
SearchIndexablesProvider.java 155 return SearchIndexablesContract.XmlResource.MIME_TYPE;
157 return SearchIndexablesContract.RawData.MIME_TYPE;
159 return SearchIndexablesContract.NonIndexableKey.MIME_TYPE;
VoicemailContract.java 189 public static final String MIME_TYPE = "mime_type";
  /cts/tests/tests/widget/src/android/widget/cts/
VideoViewTest.java 57 private static final String MIME_TYPE = "video/3gpp";
207 if (!hasCodec(MIME_TYPE)) {
208 Log.w(TAG, "Codec " + MIME_TYPE + " not supported. Return from testPlayVideo1.");
269 if (!hasCodec(MIME_TYPE)) {
270 Log.w(TAG, MIME_TYPE + " not supported. Return from testGetBufferPercentage.");
312 if (!hasCodec(MIME_TYPE)) {
313 Log.w(TAG, "Codec " + MIME_TYPE + " not supported. Return from testGetDuration.");
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
NativeMediaTest.java 33 private static final String MIME_TYPE = "video/h264";
80 if (!hasCodec(MIME_TYPE)) {
81 Log.w(TAG, "Codec " + MIME_TYPE + " not supported.");
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreAudioTestHelper.java 105 public static final String MIME_TYPE = "audio/x-mpeg";
126 values.put(Media.MIME_TYPE, MIME_TYPE);
183 public static final String MIME_TYPE = "audio/x-mpeg";
205 values.put(Media.MIME_TYPE, MIME_TYPE);
MediaStore_Video_ThumbnailsTest.java 41 private static final String MIME_TYPE = "video/3gpp";
101 if (!hasCodec(MIME_TYPE)) {
104 Log.w(TAG, "Codec " + MIME_TYPE + " not supported. Return from testGetThumbnail.");
MediaStore_Images_MediaTest.java 120 new String[] { Media.TITLE, Media.DESCRIPTION, Media.MIME_TYPE });
125 assertEquals(MIME_TYPE_JPEG, c.getString(c.getColumnIndex(Media.MIME_TYPE)));
131 new String[] { Media.TITLE, Media.DESCRIPTION, Media.MIME_TYPE }, null,
137 assertEquals(MIME_TYPE_JPEG, c.getString(c.getColumnIndex(Media.MIME_TYPE)));
141 assertEquals(MIME_TYPE_JPEG, c.getString(c.getColumnIndex(Media.MIME_TYPE)));
146 new String[] { Media.DESCRIPTION, Media.MIME_TYPE }, Media.TITLE + "=?",
151 assertEquals(MIME_TYPE_JPEG, c.getString(c.getColumnIndex(Media.MIME_TYPE)));
225 values.put(Media.MIME_TYPE, "image/jpeg");
255 assertEquals("image/jpeg", c.getString(c.getColumnIndex(Media.MIME_TYPE)));
278 values.put(Media.MIME_TYPE, "image/jpeg")
    [all...]
MediaStore_Audio_MediaTest.java 102 assertEquals(Audio1.MIME_TYPE, c.getString(c.getColumnIndex(Media.MIME_TYPE)));
144 assertEquals(Audio2.MIME_TYPE, c.getString(c.getColumnIndex(Media.MIME_TYPE)));
MediaStore_Video_MediaTest.java 98 values.put(Media.MIME_TYPE, "video/3gpp");
133 assertEquals("video/3gpp", c.getString(c.getColumnIndex(Media.MIME_TYPE)));
159 values.put(Media.MIME_TYPE, "video/3gpp");
187 assertEquals("video/3gpp", c.getString(c.getColumnIndex(Media.MIME_TYPE)));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NdefTagTester.java 41 private static final String MIME_TYPE = "application/com.android.cts.verifier.nfc";
74 NfcUtils.displayByteArray(mimeRecord.getId()), MIME_TYPE, PAYLOAD);
100 byte[] mimeBytes = MIME_TYPE.getBytes(Charset.forName("US-ASCII"));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/provider/
SharedImageProvider.java 37 public static final String MIME_TYPE = "image/jpeg";
43 MIME_TYPE
55 return MIME_TYPE;
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageList.java 67 "(" + Media.MIME_TYPE + " in (?, ?, ?))";
102 Media.MIME_TYPE,
VideoList.java 41 Media.MIME_TYPE,
  /packages/apps/Music/src/com/android/music/
VideoBrowserActivity.java 83 String type = mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Video.Media.MIME_TYPE));
94 MediaStore.Video.Media.MIME_TYPE,
MediaPickerActivity.java 100 MediaStore.Audio.Media.MIME_TYPE));
143 MediaStore.Audio.Media.MIME_TYPE,
153 MediaStore.Audio.Media.MIME_TYPE
238 mMimeIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.MIME_TYPE);
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java 53 private static final String MIME_TYPE = "video/avc"; // H.264 Advanced Video Coding
280 MediaCodecInfo codecInfo = selectCodec(MIME_TYPE);
281 int colorFormat = findNonSurfaceColorFormat(codecInfo, MIME_TYPE);
335 encoder = MediaCodec.createEncoderByType(MIME_TYPE);
337 fail("failed to create " + MIME_TYPE + " encoder");
396 encoder = MediaCodec.createEncoderByType(MIME_TYPE);
398 fail("failed to create " + MIME_TYPE + " encoder");
441 encoder = MediaCodec.createEncoderByType(MIME_TYPE);
443 fail("failed to create " + MIME_TYPE + " encoder");
479 encoder = MediaCodec.createEncoderByType(MIME_TYPE);
    [all...]
EncodeVirtualDisplayTest.java 87 private static final String MIME_TYPE = "video/avc";
198 if (false == types[j].equalsIgnoreCase(MIME_TYPE)) {
249 if (!hasCodec(MIME_TYPE)) {
255 MediaFormat encoderFormat = MediaFormat.createVideoFormat(MIME_TYPE, sWidth, sHeight);
262 encoder = MediaCodec.createEncoderByType(MIME_TYPE);
272 decoder = MediaCodec.createDecoderByType(MIME_TYPE);
273 MediaFormat decoderFormat = MediaFormat.createVideoFormat(MIME_TYPE, sWidth, sHeight);
  /frameworks/opt/chips/src/com/android/ex/chips/
Queries.java 85 public static final int MIME_TYPE = 9; // String
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwContentsClientCallbackHelperTest.java 74 static final String MIME_TYPE = "mimeType";
123 MIME_TYPE, CONTENT_LENGTH);
128 assertEquals(MIME_TYPE, downloadStartHelper.getMimeType());
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebugActivity.java 53 private static final String MIME_TYPE = "application/zip";
150 MIME_TYPE
194 intent.setType(MIME_TYPE);
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTest.java 112 final String MIME_TYPE = "image/png";
117 intent.setType(MIME_TYPE);
132 assertEquals(MIME_TYPE, getColumn(uri, Document.COLUMN_MIME_TYPE));
  /packages/apps/Dialer/tests/src/com/android/dialer/
CallDetailActivityTest.java 56 private static final String MIME_TYPE = "audio/mp3";
258 values.put(VoicemailContract.Voicemails.MIME_TYPE, MIME_TYPE);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 89 private static final String MIME_TYPE = "MIMETYPE";
196 mMimeTypeOfSendingFile = settings.getString(MIME_TYPE, null);
236 editor.remove(MIME_TYPE);
239 editor.putString(MIME_TYPE, mMimeTypeOfSendingFile);
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 60 ImageColumns.MIME_TYPE,
153 } else if (ImageColumns.MIME_TYPE.equals(column)) {

Completed in 587 milliseconds

1 2 3 4