OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:createOrReuseBitmap
(Results
1 - 7
of
7
) sorted by null
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
BitmapPoolTest.java
52
final Bitmap temp = pool.
createOrReuseBitmap
(width, height);
65
final Bitmap bitmap = pool.
createOrReuseBitmap
(IMAGE_DIM, IMAGE_DIM);
78
final Bitmap overflowBitmap = pool.
createOrReuseBitmap
(IMAGE_DIM, IMAGE_DIM);
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
CompositeImageRequest.java
48
mBitmap = getBitmapPool().
createOrReuseBitmap
(
76
final Bitmap smallCircleBitmap = getBitmapPool().
createOrReuseBitmap
(
PoolableImageCache.java
344
public Bitmap
createOrReuseBitmap
(final int width, final int height) {
345
return
createOrReuseBitmap
(width, height, Color.TRANSPARENT);
355
public Bitmap
createOrReuseBitmap
(final int width, final int height,
364
LogUtil.w(LogUtil.BUGLE_IMAGE_TAG, "PoolableImageCache:try to
createOrReuseBitmap
");
AvatarRequest.java
118
final Bitmap bitmap = getBitmapPool().
createOrReuseBitmap
(width, height,
160
final Bitmap bitmap = getBitmapPool().
createOrReuseBitmap
(width, height,
SimSelectorAvatarRequest.java
77
final Bitmap bitmap = getBitmapPool().
createOrReuseBitmap
(width, height, backgroundColor);
ImageRequest.java
223
final Bitmap targetBitmap = getBitmapPool().
createOrReuseBitmap
(width, height);
/packages/apps/Messaging/src/com/android/messaging/datamodel/
BitmapPool.java
304
public Bitmap
createOrReuseBitmap
(final int width, final int height) {
Completed in 172 milliseconds