Home
last modified time | relevance | path

Searched refs:decodeByteArray (Results 1 – 25 of 70) sorted by relevance

123

/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
H A DMtpBitmapFetch.java51 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 DFrameSequence.java62 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 DFileImageRequest.java65 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 DEncodedImageResource.java57 return BitmapFactory.decodeByteArray(mImageBytes, 0, mImageBytes.length); in getBitmap()
132 final Bitmap decodedBitmap = BitmapFactory.decodeByteArray(mImageBytes, 0, in loadMediaBlocking()
H A DPoolableImageCache.java176 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 DIconRequestInfo.java18 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 DBitmapUtil.java42 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 DBitmapPool.java265 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 DDecodeUtils.java87 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 DBitmapUtil.java45 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); in getSmallerExtentFromBytes()
89 return BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); in decodeBitmapFromBytes()
H A DImageViewDrawableSetter.java167 Bitmap bitmap = BitmapFactory.decodeByteArray(compressed, 0, compressed.length); in decodedBitmapDrawable()
/aosp12/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java656 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 DMovie.java74 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 DPhotoProcessor.java127 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 DPictureDecoder.java38 final Bitmap pictureBitmap = BitmapFactory.decodeByteArray(data, 0, data.length, opts); in decode()
/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/util/
H A DImageLoader.java193 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 DAutoThumbnailDrawable.java237 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 DBitmapUtility.java37 Bitmap b = BitmapFactory.decodeByteArray(data, 0, data.length, opts); in bitmapFromJpeg()
/aosp12/packages/apps/Tag/src/com/android/apps/tag/record/
H A DImageRecord.java62 Bitmap bitmap = BitmapFactory.decodeByteArray(content, 0, content.length); in parse()
/aosp12/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DEvenMoreAsserts.java104 BitmapFactory.decodeByteArray(imageData, 0, imageData.length, o); in getImageDimensions()
/aosp12/packages/apps/Camera2/src/com/android/camera/session/
H A DCaptureSessionImpl.java372 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 DFilmstripItemUtils.java169 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length); in loadVideoThumbnail()
/aosp12/packages/apps/Camera2/tests/src/com/android/camera/functional/
H A DImageCaptureIntentTest.java96 Bitmap b = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length); in testExtraOutput()
/aosp12/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
H A DBitmapInfo.java125 BitmapFactory.decodeByteArray(data, 1, data.length - 1, decodeOptions), in fromByteArray()
/aosp12/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectBrowser.java96 Bitmap bitmap = BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length); in getView()

123