HomeSort by relevance Sort by last modified time
    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 321 private final LruCache<Object, Bitmap> mBitmapCache;
354 /** Cache size for {@link #mBitmapCache} for devices with "large" RAM. */
371 mBitmapCache = new LruCache<Object, Bitmap>(bitmapCacheSize) {
396 + " + " + btk(mBitmapCache.maxSize()));
443 for (Bitmap b : mBitmapCache.snapshot().values()) {
584 if (cachedBitmap.getByteCount() < mBitmapCache.maxSize() / 6) {
585 mBitmapCache.put(request.getKey(), cachedBitmap);
596 * bitmap is held either by {@link #mBitmapCache} or by a soft reference in
654 mBitmapCache.evictAll();
741 * if needed. Some of the bitmaps will still be retained by {@link #mBitmapCache}
    [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 96 milliseconds