Searched defs:decodeStream (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DMovie.java46 public static Movie decodeStream(InputStream is) { method in class:Movie
88 moov = decodeStream(is);
H A DBitmapFactory.java376 bm = decodeStream(stream, null, opts);
429 return decodeStream(is, pad, opts);
581 public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts) { method in class:BitmapFactory
633 public static Bitmap decodeStream(InputStream is) { method in class:BitmapFactory
634 return decodeStream(is, null, null);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java112 result.bitmap = decodeStream(factory, null, opts);
129 * Wrapper around {@link BitmapFactory#decodeStream(InputStream, Rect,
145 public static Bitmap decodeStream(final InputStreamFactory factory, final Rect outPadding, method in class:ImageUtils
156 final Bitmap originalBitmap = BitmapFactory.decodeStream(is, outPadding, opts);
159 Log.w(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options): "
174 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an OOME", oome);
177 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an IOE", ioe);
201 decodeStream(factory, null, opts);

Completed in 96 milliseconds