/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/ |
H A D | MtpBitmapFetch.java | 51 BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o); in getThumbnail() 60 return BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o); in getThumbnail() 66 return BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length); in getThumbnail() 84 BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o); in getFullsize() 95 created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o); in getFullsize() 97 created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length); in getFullsize()
|
/aosp12/frameworks/ex/framesequence/src/android/support/rastermill/ |
H A D | FrameSequence.java | 62 public static FrameSequence decodeByteArray(byte[] data) { in decodeByteArray() method in FrameSequence 63 return decodeByteArray(data, 0, data.length); in decodeByteArray() 66 public static FrameSequence decodeByteArray(byte[] data, int offset, int length) { in decodeByteArray() method in FrameSequence 79 return decodeByteArray(byteArray, buffer.position(), buffer.remaining()); in decodeByteBuffer()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
H A D | FileImageRequest.java | 65 BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length, options); in loadBitmapInternal() 88 return BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length, in loadBitmapInternal() 93 return bitmapPool.decodeByteArray(thumbnail, options, sampledWidth, in loadBitmapInternal()
|
H A D | EncodedImageResource.java | 57 return BitmapFactory.decodeByteArray(mImageBytes, 0, mImageBytes.length); in getBitmap() 132 final Bitmap decodedBitmap = BitmapFactory.decodeByteArray(mImageBytes, 0, in loadMediaBlocking()
|
H A D | PoolableImageCache.java | 176 public Bitmap decodeByteArray(@NonNull final byte[] bytes, in decodeByteArray() method in PoolableImageCache.ReusableImageResourcePool 190 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp); in decodeByteArray() 198 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp); in decodeByteArray()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/model/data/ |
H A D | IconRequestInfo.java | 18 import static android.graphics.BitmapFactory.decodeByteArray; 105 info.bitmap = li.createIconBitmap(decodeByteArray( in loadWorkspaceIcon()
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/contactphoto/ |
H A D | BitmapUtil.java | 42 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); in getSmallerExtentFromBytes() 88 return BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); in decodeBitmapFromBytes()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
H A D | BitmapPool.java | 265 public Bitmap decodeByteArray(@NonNull final byte[] bytes, in decodeByteArray() method in BitmapPool 275 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp); in decodeByteArray() 285 b = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, optionsTmp); in decodeByteArray()
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
H A D | DecodeUtils.java | 87 BitmapFactory.decodeByteArray(bytes, offset, length, options)); in decode() 95 BitmapFactory.decodeByteArray(bytes, offset, length, options); in decodeBounds() 174 BitmapFactory.decodeByteArray(data, 0, data.length, options); in decodeIfBigEnough() 185 BitmapFactory.decodeByteArray(data, 0, data.length, options)); in decodeIfBigEnough()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/util/ |
H A D | BitmapUtil.java | 45 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); in getSmallerExtentFromBytes() 89 return BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); in decodeBitmapFromBytes()
|
H A D | ImageViewDrawableSetter.java | 167 Bitmap bitmap = BitmapFactory.decodeByteArray(compressed, 0, compressed.length); in decodedBitmapDrawable()
|
/aosp12/frameworks/base/graphics/java/android/graphics/ |
H A D | BitmapFactory.java | 656 public static Bitmap decodeByteArray(byte[] data, int offset, int length, Options opts) { in decodeByteArray() method in BitmapFactory 690 public static Bitmap decodeByteArray(byte[] data, int offset, int length) { in decodeByteArray() method in BitmapFactory 691 return decodeByteArray(data, offset, length, null); in decodeByteArray()
|
H A D | Movie.java | 74 public static native Movie decodeByteArray(byte[] data, int offset, in decodeByteArray() method in Movie
|
/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
H A D | PhotoProcessor.java | 127 this(BitmapFactory.decodeByteArray(originalBytes, 0, originalBytes.length), in PhotoProcessor() 164 this(BitmapFactory.decodeByteArray(originalBytes, 0, originalBytes.length), in PhotoProcessor()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/captureintent/ |
H A D | PictureDecoder.java | 38 final Bitmap pictureBitmap = BitmapFactory.decodeByteArray(data, 0, data.length, opts); in decode()
|
/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/util/ |
H A D | ImageLoader.java | 193 BitmapFactory.decodeByteArray(data, 0, data.length, options); in decodeBitmapFromByteArray() 197 return BitmapFactory.decodeByteArray(data, 0, data.length, options); in decodeBitmapFromByteArray()
|
/aosp12/packages/apps/Gallery2/src/com/android/photos/drawables/ |
H A D | AutoThumbnailDrawable.java | 237 BitmapFactory.decodeByteArray(preferred, 0, preferred.length, mOptions); 262 b = BitmapFactory.decodeByteArray(preferred, 0, preferred.length, mOptions);
|
/aosp12/packages/apps/DevCamera/src/com/android/devcamera/ |
H A D | BitmapUtility.java | 37 Bitmap b = BitmapFactory.decodeByteArray(data, 0, data.length, opts); in bitmapFromJpeg()
|
/aosp12/packages/apps/Tag/src/com/android/apps/tag/record/ |
H A D | ImageRecord.java | 62 Bitmap bitmap = BitmapFactory.decodeByteArray(content, 0, content.length); in parse()
|
/aosp12/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
H A D | EvenMoreAsserts.java | 104 BitmapFactory.decodeByteArray(imageData, 0, imageData.length, o); in getImageDimensions()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/session/ |
H A D | CaptureSessionImpl.java | 372 BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length, options); in finish() 421 Bitmap placeholder = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length, in updatePreview()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/data/ |
H A D | FilmstripItemUtils.java | 169 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length); in loadVideoThumbnail()
|
/aosp12/packages/apps/Camera2/tests/src/com/android/camera/functional/ |
H A D | ImageCaptureIntentTest.java | 96 Bitmap b = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length); in testExtraOutput()
|
/aosp12/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/ |
H A D | BitmapInfo.java | 125 BitmapFactory.decodeByteArray(data, 1, data.length - 1, decodeOptions), in fromByteArray()
|
/aosp12/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
H A D | ObjectBrowser.java | 96 Bitmap bitmap = BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length); in getView()
|