Searched refs:BitmapItem (Results 1 - 2 of 2) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DBitmapDownloader.java61 private static class BitmapItem { class in class:BitmapDownloader
71 public BitmapItem(Bitmap bitmap, boolean scaled) { method in class:BitmapDownloader.BitmapItem
77 private final LruCache<String, BitmapItem> mMemoryCache;
119 mMemoryCache = new LruCache<String, BitmapItem>(cacheSize) {
121 protected int sizeOf(String key, BitmapItem bitmap) {
270 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
283 bitmapItem = new BitmapItem(bitmap, isScaled);
292 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
325 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
338 BitmapItem bitmapIte
[all...]
H A DDrawableDownloader.java80 private static class BitmapItem { class in class:DrawableDownloader
85 public BitmapItem(int originalWidth, int originalHeight) { method in class:DrawableDownloader.BitmapItem
149 private final LruCache<String, BitmapItem> mMemoryCache;
190 mMemoryCache = new LruCache<String, BitmapItem>(cacheSize) {
192 protected int sizeOf(String key, BitmapItem bitmap) {
197 boolean evicted, String key, BitmapItem oldValue, BitmapItem newValue) {
359 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
367 bitmapItem = new BitmapItem(loader.getOriginalWidth(), loader.getOriginalHeight());
380 BitmapItem ite
[all...]

Completed in 86 milliseconds