OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBitmapCache
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
FilterEnvironment.java
41
private BitmapCache
mBitmapCache
;
59
mBitmapCache
= cache;
63
mBitmapCache
.cache(buffer);
67
mBitmapCache
.cache(bitmap);
71
return
mBitmapCache
.getBitmap(w, h, type);
75
return
mBitmapCache
.getBitmapCopy(source, type);
172
return
mBitmapCache
;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
BitmapCache.java
32
mBitmapCache
= new HashMap<Long, ArrayList<WeakReference<Bitmap>>>();
145
ArrayList<WeakReference<Bitmap>> list =
mBitmapCache
.get(key);
148
mBitmapCache
.put(key, list);
178
ArrayList<WeakReference<Bitmap>> list =
mBitmapCache
.get(key);
182
mBitmapCache
.remove(key);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
MasterImage.java
117
private BitmapCache
mBitmapCache
= new BitmapCache();
407
mBitmapCache
.cache(mPreviousImage);
422
mPreviousImage =
mBitmapCache
.getBitmapCopy(getFilteredImage(), BitmapCache.NEW_LOOK);
528
mBitmapCache
.cache(mPartialBitmap);
536
mBitmapCache
.cache(mHighresBitmap);
694
mBitmapCache
.cache(mGeometryOnlyBitmap);
699
mBitmapCache
.cache(mFiltersOnlyBitmap);
706
mBitmapCache
.cache(mPartialBitmap);
713
mBitmapCache
.cache(mHighresBitmap);
830
return
mBitmapCache
;
[
all
...]
/frameworks/base/core/java/android/widget/
RemoteViews.java
107
private BitmapCache
mBitmapCache
;
320
mBitmapCache
= new BitmapCache();
321
setBitmapCache(
mBitmapCache
);
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java
523
private final LruCache<Object, Bitmap>
mBitmapCache
;
556
/** Cache size for {@link #
mBitmapCache
} for devices with "large" RAM. */
573
mBitmapCache
= new LruCache<Object, Bitmap>(bitmapCacheSize) {
598
+ " + " + btk(
mBitmapCache
.maxSize()));
645
for (Bitmap b :
mBitmapCache
.snapshot().values()) {
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
AnimatedAdapter.java
94
private final BitmapCache
mBitmapCache
;
268
mBitmapCache
= new AltBitmapCache(BITMAP_CACHE_TARGET_SIZE_BYTES,
[
all
...]
Completed in 434 milliseconds