Searched refs:BitmapItem (Results 1 – 2 of 2) sorted by relevance
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/ |
D | BitmapDownloader.java | 64 private static class BitmapItem { class in BitmapDownloader 74 public BitmapItem(Bitmap bitmap, boolean scaled) { in BitmapItem() method in BitmapDownloader.BitmapItem 80 private final LruCache<String, BitmapItem> mMemoryCache; 124 mMemoryCache = new LruCache<String, BitmapItem>(cacheSize) { in BitmapDownloader() 126 protected int sizeOf(String key, BitmapItem bitmap) { in BitmapDownloader() 296 BitmapItem bitmapItem = mMemoryCache.get(bucketKey); in addBitmapToMemoryCache() 309 bitmapItem = new BitmapItem(bitmap, isScaled); in addBitmapToMemoryCache() 318 BitmapItem bitmapItem = mMemoryCache.get(bucketKey); in getBitmapFromMemCache() 351 BitmapItem bitmapItem = mMemoryCache.get(bucketKey); in getBitmapFromMemCache() 364 BitmapItem bitmapItem = mMemoryCache.get(bucketKey); in getLargestBitmapFromMemCache() [all …]
|
D | DrawableDownloader.java | 80 private static class BitmapItem { class in DrawableDownloader 85 public BitmapItem(int originalWidth, int originalHeight) { in BitmapItem() method in DrawableDownloader.BitmapItem 149 private final LruCache<String, BitmapItem> mMemoryCache; 190 mMemoryCache = new LruCache<String, BitmapItem>(cacheSize) { in DrawableDownloader() 192 protected int sizeOf(String key, BitmapItem bitmap) { in DrawableDownloader() 197 boolean evicted, String key, BitmapItem oldValue, BitmapItem newValue) { in DrawableDownloader() 359 BitmapItem bitmapItem = mMemoryCache.get(bucketKey); in addBitmapToMemoryCache() 367 bitmapItem = new BitmapItem(loader.getOriginalWidth(), loader.getOriginalHeight()); in addBitmapToMemoryCache() 380 BitmapItem item = mMemoryCache.get(bucketKey); in getBitmapFromMemCache() 390 BitmapItem item = mMemoryCache.get(bucketKey); in getLargestBitmapFromMemCache()
|