Searched refs:DecodedImageResource (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | DecodedImageResource.java | 36 public class DecodedImageResource extends ImageResource { class 44 public DecodedImageResource(final String key, final Bitmap bitmap, int orientation) { in DecodedImageResource() method in DecodedImageResource 176 DecodedImageResource.this.addRef(); in EncodeImageRequest() 181 return DecodedImageResource.this.getKey(); in getKey() 223 return DecodedImageResource.this; in loadMediaBlocking()
|
D | ImageRequest.java | 124 return new DecodedImageResource(getKey(), loadedBitmap, mOrientation); in loadMediaInternal() 219 if (mDescriptor.cropToCircle && loadedResource instanceof DecodedImageResource) { in postProcessOnBitmapResourceLoaded() 231 return new DecodedImageResource(getKey(), targetBitmap, in postProcessOnBitmapResourceLoaded()
|
D | UriImageRequest.java | 51 if (resource instanceof DecodedImageResource) { in loadMediaInternal() 52 ((DecodedImageResource) resource).setCacheable(false); in loadMediaInternal()
|
D | EncodedImageResource.java | 134 return new DecodedImageResource(getKey(), decodedBitmap, getOrientation()); in loadMediaBlocking()
|
D | CompositeImageRequest.java | 97 return new DecodedImageResource(getKey(), mBitmap, ExifInterface.ORIENTATION_NORMAL); in loadMediaInternal()
|
D | SimSelectorAvatarRequest.java | 110 return new DecodedImageResource(getKey(), bitmap, ExifInterface.ORIENTATION_NORMAL); in renderSimAvatarInternal()
|
D | AvatarRequest.java | 114 return new DecodedImageResource(getKey(), bitmap, orientation); in loadMediaInternal()
|