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...]
  /packages/apps/Launcher3/src/com/android/launcher3/
HolographicOutlineHelper.java 52 private final SparseArray<Bitmap> mBitmapCache = new SparseArray<>(4);
172 Bitmap cache = mBitmapCache.get(key);
176 mBitmapCache.put(key, cache);
  /frameworks/base/core/java/android/widget/
RemoteViews.java 118 private BitmapCache mBitmapCache;
391 mBitmapCache = new BitmapCache();
392 setBitmapCache(mBitmapCache);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 658 private final LruCache<Object, Bitmap> mBitmapCache;
691 /** Cache size for {@link #mBitmapCache} for devices with "large" RAM. */
717 mBitmapCache = new LruCache<Object, Bitmap>(bitmapCacheSize) {
742 + " + " + btk(mBitmapCache.maxSize()));
    [all...]

Completed in 373 milliseconds