Searched defs:decodeByteArray (Results 1 - 3 of 3) sorted by path

/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DBitmapPool.java265 public Bitmap decodeByteArray(@NonNull final byte[] bytes, method in class:BitmapPool
275 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp);
285 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp);
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
H A DPoolableImageCache.java176 public Bitmap decodeByteArray(@NonNull final byte[] bytes, method in class:PoolableImageCache.ReusableImageResourcePool
190 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp);
198 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DBitmapUtil.java47 public static Bitmap decodeByteArray(byte[] src, int w, int h) { method in class:BitmapUtil
52 BitmapFactory.decodeByteArray(src, 0, src.length, opts);
58 return BitmapFactory.decodeByteArray(src, 0, src.length, opts);
76 final Bitmap decoded = decodeByteArray(src, w, h);

Completed in 119 milliseconds