HomeSort by relevance Sort by last modified time
    Searched defs:decodeStream (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /frameworks/base/core/java/com/android/internal/widget/
LocalImageResolver.java 57 Bitmap bitmap = BitmapFactory.decodeStream(input, null, bitmapOptions);
67 BitmapFactory.decodeStream(input, null, onlyBoundsOptions);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
BitmapHelper.java 48 return BitmapFactory.decodeStream(is, null, bmOptions);
55 BitmapFactory.decodeStream(is, null, bmOptions);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmapFactory.java 56 public static Bitmap decodeStream(InputStream is) {
57 return decodeStream(is, null, new BitmapFactory.Options());
61 public static Bitmap decodeStream(InputStream is, Rect outPadding, BitmapFactory.Options opts) {
  /external/skia/samplecode/
SampleAnimator.cpp 30 bool decodeStream(SkStream* stream);
56 return is && this->decodeStream(is.get());
61 return this->decodeStream(&is);
85 bool SkAnimatorView::decodeStream(SkStream* stream) {
90 if (!fAnimator->decodeStream(stream)) {
  /external/skqp/samplecode/
SampleAnimator.cpp 30 bool decodeStream(SkStream* stream);
56 return is && this->decodeStream(is.get());
61 return this->decodeStream(&is);
85 bool SkAnimatorView::decodeStream(SkStream* stream) {
90 if (!fAnimator->decodeStream(stream)) {
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/utils/
BitmapHelper.java 50 return BitmapFactory.decodeStream(is, null, bmOptions);
57 BitmapFactory.decodeStream(is, null, bmOptions);
  /packages/apps/Music/src/com/android/music/utils/
BitmapHelper.java 48 return BitmapFactory.decodeStream(is, null, bmOptions);
55 BitmapFactory.decodeStream(is, null, bmOptions);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceDecoder.java 71 result = decodeStream(source, width, height, bytes);
78 private GifBitmapWrapper decodeStream(ImageVideoWrapper source, int width, int height, byte[] bytes)
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowBitmapFactory.java 92 public static Bitmap decodeStream(InputStream is) {
93 return decodeStream(is, null, null);
97 public static Bitmap decodeStream(InputStream is, Rect outPadding, BitmapFactory.Options opts) {
  /frameworks/base/graphics/java/android/graphics/
Movie.java 55 public static Movie decodeStream(InputStream is) {
98 moov = decodeStream(is);
BitmapFactory.java 485 bm = decodeStream(stream, null, opts);
544 return decodeStream(is, pad, opts);
    [all...]
  /frameworks/ex/framesequence/src/android/support/rastermill/
FrameSequence.java 87 public static FrameSequence decodeStream(InputStream stream) {
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemUtils.java 68 BitmapFactory.decodeStream(is, null, justBoundsOpts);
130 Bitmap b = BitmapFactory.decodeStream(stream, null, opts);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java 202 return decodeStream(is, options);
271 * @return An integer to pass in to {@link BitmapFactory#decodeStream(java.io.InputStream, android.graphics.Rect,
281 * {@link BitmapFactory#decodeStream(java.io.InputStream, android.graphics.Rect,
287 decodeStream(is, options);
292 private static Bitmap decodeStream(ExceptionCatchingInputStream is, BitmapFactory.Options options) {
307 final Bitmap result = BitmapFactory.decodeStream(is, null, options);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 109 result.bitmap = decodeStream(factory, null, opts);
126 * Wrapper around {@link BitmapFactory#decodeStream(InputStream, Rect,
142 public static Bitmap decodeStream(final InputStreamFactory factory, final Rect outPadding,
155 final Bitmap originalBitmap = BitmapFactory.decodeStream(is, outPadding, opts);
158 Log.w(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options): "
173 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an OOME", oome);
176 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an IOE", ioe);
200 decodeStream(factory, null, opts);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
ImageRequest.java 160 BitmapFactory.decodeStream(inputStream, null, options);
184 // BitmapFactory.decodeStream() reads the header portion of the bitmap stream and leave
201 return BitmapFactory.decodeStream(inputStream, null, options);
  /packages/apps/TV/src/com/android/tv/util/images/
BitmapUtils.java 119 BitmapFactory.decodeStream(inputStream, null, options);
141 Bitmap bitmap = BitmapFactory.decodeStream(inputStream, null, options);
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/
InputStreamProvider.java 57 BitmapFactory.decodeStream(is, null, options);
137 fullSize = BitmapFactory.decodeStream(is, null, options);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodPresentMediaDialog.java 149 BitmapFactory.decodeStream(input, null, options);
161 scaled = BitmapFactory.decodeStream(input, null, options);
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapWorkerTask.java 168 BitmapFactory.decodeStream(bufferedStream, null, bitmapOptions);
185 Bitmap bitmap = BitmapFactory.decodeStream(bufferedStream, null, bitmapOptions);
DrawableLoader.java 193 BitmapFactory.decodeStream(bufferedStream, null, bitmapOptions);
237 bitmap = BitmapFactory.decodeStream(bufferedStream, null, bitmapOptions);
239 Log.e(TAG, "RuntimeException" + ex + ", trying decodeStream again");
243 bitmap = BitmapFactory.decodeStream(bufferedStream, null, bitmapOptions);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapColorSpaceTest.java 174 Bitmap b = BitmapFactory.decodeStream(in);
196 Bitmap b = BitmapFactory.decodeStream(in);
221 Bitmap b = BitmapFactory.decodeStream(in, null, opts);
247 bitmap1 = BitmapFactory.decodeStream(in, null, opts);
258 Bitmap bitmap2 = BitmapFactory.decodeStream(in, null, opts);
277 Bitmap b = BitmapFactory.decodeStream(in);
315 Bitmap b = BitmapFactory.decodeStream(in);
354 Bitmap b = BitmapFactory.decodeStream(in, null, opts);
394 Bitmap b = BitmapFactory.decodeStream(in, null, opts);
444 Bitmap bitmapIn = BitmapFactory.decodeStream(in)
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
DecodeTask.java 215 BitmapFactory.decodeStream(in, null, mOpts);
493 result = BitmapFactory.decodeStream(in, null, mOpts);
  /packages/apps/Messaging/src/com/android/messaging/sms/
DatabaseMessages.java 699 BitmapFactory.decodeStream(is, null, opt);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
ImageUtils.java 574 BitmapFactory.decodeStream(inputStream, null, mOptions);
686 mDecoded = BitmapFactory.decodeStream(inputStream, null, mOptions);
    [all...]

Completed in 1160 milliseconds

1 2 3 4