HomeSort by relevance Sort by last modified time
    Searched defs:bitmapCache (Results 1 - 2 of 2) sorted by null

  /packages/apps/Dialer/java/com/android/dialer/contactphoto/
ContactPhotoManagerImpl.java 100 /** Cache size for {@link #bitmapCache} for devices with "large" RAM. */
123 private final LruCache<Object, Bitmap> bitmapCache;
156 bitmapCache =
193 "Cache size: " + btk(bitmapHolderCache.maxSize()) + " + " + btk(bitmapCache.maxSize()));
224 * either by {@link #bitmapCache} or by a soft reference in the holder, it will not be necessary
349 for (Bitmap b : bitmapCache.snapshot().values()) {
563 if (cachedBitmap.getByteCount() < bitmapCache.maxSize() / 6) {
564 bitmapCache.put(request.getKey(), cachedBitmap);
594 bitmapCache.evictAll();
686 * Some of the bitmaps will still be retained by {@link #bitmapCache}
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 27 import com.android.gallery3d.filtershow.cache.BitmapCache;
319 BitmapCache bitmapCache = MasterImage.getImage().getBitmapCache();
320 Bitmap temp = bitmapCache.getBitmap(frame.width(),
321 frame.height(), BitmapCache.UTIL_GEOMETRY);
394 BitmapCache cache = MasterImage.getImage().getBitmapCache();

Completed in 80 milliseconds