Home
last modified time | relevance | path

Searched refs:sizeMap (Results 1 – 1 of 1) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/
DThumbnailCache.java71 TreeMap<Point, Pair<Uri, Point>> sizeMap; in getThumbnail() local
72 sizeMap = mSizeIndex.get(uri); in getThumbnail()
73 if (sizeMap == null || sizeMap.isEmpty()) { in getThumbnail()
79 Pair<Uri, Point> cacheKey = sizeMap.get(size); in getThumbnail()
88 Point otherSize = sizeMap.higherKey(size); in getThumbnail()
90 cacheKey = sizeMap.get(otherSize); in getThumbnail()
101 otherSize = sizeMap.lowerKey(size); in getThumbnail()
103 cacheKey = sizeMap.get(otherSize); in getThumbnail()
127 TreeMap<Point, Pair<Uri, Point>> sizeMap; in putThumbnail() local
129 sizeMap = mSizeIndex.get(uri); in putThumbnail()
[all …]