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

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DBitmapDownloader.java59 private static class BitmapItem { class in class:BitmapDownloader
69 public BitmapItem(Bitmap bitmap, boolean scaled) { method in class:BitmapDownloader.BitmapItem
75 private LruCache<String, BitmapItem> mMemoryCache;
117 mMemoryCache = new LruCache<String, BitmapItem>(cacheSize) {
119 protected int sizeOf(String key, BitmapItem bitmap) {
268 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
281 bitmapItem = new BitmapItem(bitmap, isScaled);
290 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
323 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
336 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 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 95 milliseconds