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

  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapDownloader.java 54 private static class BitmapItem {
64 public BitmapItem(Bitmap bitmap, boolean scaled) {
70 private LruCache<String, BitmapItem> mMemoryCache;
112 mMemoryCache = new LruCache<String, BitmapItem>(cacheSize) {
114 protected int sizeOf(String key, BitmapItem bitmap) {
263 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
264 if (bitmapItem != null) {
265 Bitmap currentBitmap = bitmapItem.mBitmap;
276 bitmapItem = new BitmapItem(bitmap, isScaled)
    [all...]
DrawableDownloader.java 75 private static class BitmapItem {
80 public BitmapItem(int originalWidth, int originalHeight) {
145 private LruCache<String, BitmapItem> mMemoryCache;
186 mMemoryCache = new LruCache<String, BitmapItem>(cacheSize) {
188 protected int sizeOf(String key, BitmapItem bitmap) {
193 boolean evicted, String key, BitmapItem oldValue, BitmapItem newValue) {
355 BitmapItem bitmapItem = mMemoryCache.get(bucketKey);
359 if (bitmapItem != null)
    [all...]

Completed in 63 milliseconds