Lines Matching refs:Point
23 import android.graphics.Point;
53 private final HashMap<SizeIndexKey, TreeMap<Point, CacheKey>> mSizeIndex;
73 public Result getThumbnail(Uri uri, UserId userId, Point size) { in getThumbnail()
74 TreeMap<Point, CacheKey> sizeMap; in getThumbnail()
91 Point otherSize = sizeMap.higherKey(size); in getThumbnail()
127 public void putThumbnail(Uri uri, UserId userId, Point size, Bitmap thumbnail, in putThumbnail()
131 TreeMap<Point, CacheKey> sizeMap; in putThumbnail()
152 TreeMap<Point, CacheKey> sizeMap; in removeUri()
168 TreeMap<Point, CacheKey> sizeMap; in removeKey()
218 private @Nullable Point mSize;
225 private static Result obtain(@Status int status, Point size, Entry entry) { in obtain()
230 @Nullable Point size, long lastModified) { in obtain()
271 public @Nullable Point getSize() { in getSize()
318 private static final class SizeComparator implements Comparator<Point> {
320 public int compare(Point size0, Point size1) { in compare()
362 final Point point;
364 CacheKey(Uri uri, UserId userId, Point point) { in CacheKey()