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

  /frameworks/base/core/java/android/widget/
RemoteViews.java 105 private BitmapCache mBitmapCache;
276 mBitmapCache = new BitmapCache();
277 setBitmapCache(mBitmapCache);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 320 private final LruCache<Object, Bitmap> mBitmapCache;
353 /** Cache size for {@link #mBitmapCache} for devices with "large" RAM. */
370 mBitmapCache = new LruCache<Object, Bitmap>(bitmapCacheSize) {
395 + " + " + btk(mBitmapCache.maxSize()));
442 for (Bitmap b : mBitmapCache.snapshot().values()) {
582 if (cachedBitmap.getByteCount() < mBitmapCache.maxSize() / 6) {
583 mBitmapCache.put(request.getKey(), cachedBitmap);
594 * bitmap is held either by {@link #mBitmapCache} or by a soft reference in
652 mBitmapCache.evictAll();
739 * if needed. Some of the bitmaps will still be retained by {@link #mBitmapCache}
    [all...]

Completed in 94 milliseconds