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

/frameworks/base/graphics/java/android/graphics/
H A DMovie.java45 public static native Movie decodeStream(InputStream is); method in class:Movie
74 moov = decodeStream(is);
H A DBitmapFactory.java302 bm = decodeStream(stream, null, opts);
355 return decodeStream(is, pad, opts);
467 public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts) { method in class:BitmapFactory
600 public static Bitmap decodeStream(InputStream is) { method in class:BitmapFactory
601 return decodeStream(is, null, null);
628 return decodeStream(fis, outPadding, opts);
/frameworks/ex/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java101 final Bitmap decodedBitmap = decodeStream(inputStream, null, opts);
126 * Wrapper around {@link BitmapFactory#decodeStream(InputStream, Rect,
142 public static Bitmap decodeStream(InputStream is, Rect outPadding, BitmapFactory.Options opts) { method in class:ImageUtils
167 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an OOME", oome);
170 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an IOE", ioe);
199 decodeStream(inputStream, null, opts);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java97 // TODO: make this method not download the image for both getImageBounds and decodeStream
108 final Bitmap decodedBitmap = decodeStream(inputStream, null, opts);
133 * Wrapper around {@link BitmapFactory#decodeStream(InputStream, Rect,
149 public static Bitmap decodeStream(InputStream is, Rect outPadding, BitmapFactory.Options opts) { method in class:ImageUtils
169 final Bitmap originalBitmap = BitmapFactory.decodeStream(byteStream, outPadding, opts);
179 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an OOME", oome);
182 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an IOE", ioe);
221 decodeStream(inputStream, null, opts);

Completed in 73 milliseconds