HomeSort by relevance Sort by last modified time
    Searched refs:decodeByteArray (Results 1 - 21 of 21) sorted by null

  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDecodeRunnable.java 170 .decodeByteArray(imageBuffer, 0, imageBuffer.length, bitmapOptions);
216 returnBitmap = BitmapFactory.decodeByteArray(
  /external/volley/src/main/java/com/android/volley/toolbox/
ImageRequest.java 200 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length, decodeOptions);
204 BitmapFactory.decodeByteArray(data, 0, data.length, decodeOptions);
222 Bitmap tempBitmap = BitmapFactory.decodeByteArray(data, 0, data.length, decodeOptions);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowBitmapFactory.java 135 protected static Bitmap decodeByteArray(byte[] data, int offset, int length) {
136 Bitmap bitmap = decodeByteArray(data, offset, length, new BitmapFactory.Options());
143 protected static Bitmap decodeByteArray(
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 83 mBitmapArray[mDecodingCount] = BitmapFactory.decodeByteArray(
BitmapDecode.java 48 //Set to false to use decodeByteArray
109 mMovie = Movie.decodeByteArray(array, 0, array.length);
CreateBitmap.java 65 return BitmapFactory.decodeByteArray(array, 0, array.length);
  /cts/tests/camera/src/android/hardware/camera2/cts/
FastBasicsTest.java 130 Bitmap b = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length);
215 Bitmap b = BitmapFactory.decodeByteArray(picture, 0, picture.length);
DngCreatorTest.java 567 BitmapFactory.decodeByteArray(compressedJpegData, /*offset*/0,
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 166 Bitmap b = BitmapFactory.decodeByteArray(array, 0, array.length, mOpt1);
172 assertNull(BitmapFactory.decodeByteArray(array, 0, array.length, mOpt2));
178 Bitmap b = BitmapFactory.decodeByteArray(array, 0, array.length);
622 Bitmap purgeableBitmap = BitmapFactory.decodeByteArray(array, 0, array.length, options);
653 verifyUnscaled(BitmapFactory.decodeByteArray(bytes, 0, bytes.length));
654 verifyUnscaled(BitmapFactory.decodeByteArray(bytes, 0, bytes.length, null));
655 verifyUnscaled(BitmapFactory.decodeByteArray(bytes, 0, bytes.length, unscaledOpt));
656 verifyUnscaled(BitmapFactory.decodeByteArray(bytes, 0, bytes.length, defaultOpt));
664 verifyScaled(BitmapFactory.decodeByteArray(bytes, 0, bytes.length, scaledOpt));
734 BitmapFactory.decodeByteArray(new byte[100], 1, 20, options)
    [all...]
MovieTest.java 121 mMovie = Movie.decodeByteArray(bytes, 0, bytes.length);
YuvImageTest.java 289 result = BitmapFactory.decodeByteArray(jpegData, 0,
BitmapRegionDecoderTest.java 278 Bitmap wholeImage = BitmapFactory.decodeByteArray(imageData,
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBitmapFactoryTest.java 92 Bitmap bitmap = BitmapFactory.decodeByteArray(yummyBites, 100, 100);
198 Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
210 Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 1, bytes.length - 2);
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 278 final Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
Adapters.java     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
CameraOrientationActivity.java 500 inputImage = BitmapFactory.decodeByteArray(data, 0, data.length);
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/
CameraTestUtils.java     [all...]
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 438 BitmapFactory.decodeByteArray(mJpegData, 0, mJpegData.length, bmpOptions);
    [all...]
  /cts/tests/tests/content/src/android/content/cts/util/
XmlUtils.java     [all...]
  /cts/tests/tests/view/src/android/view/cts/util/
XmlUtils.java     [all...]
  /cts/tests/tests/widget/src/android/widget/cts/util/
XmlUtils.java     [all...]

Completed in 1310 milliseconds