Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/src/com/android/documentsui/
DThumbnailCache.java87 Point otherSize = sizeMap.higherKey(size); in getThumbnail() local
88 if (otherSize != null) { in getThumbnail()
89 cacheKey = sizeMap.get(otherSize); in getThumbnail()
94 return Result.obtain(Result.CACHE_HIT_LARGER, otherSize, entry); in getThumbnail()
100 otherSize = sizeMap.lowerKey(size); in getThumbnail()
101 if (otherSize != null) { in getThumbnail()
102 cacheKey = sizeMap.get(otherSize); in getThumbnail()
107 return Result.obtain(Result.CACHE_HIT_SMALLER, otherSize, entry); in getThumbnail()
/packages/apps/Camera2/src/com/android/camera/util/
DSize.java137 Size otherSize = (Size) other; in equals() local
138 return otherSize.width == this.width && otherSize.height == this.height; in equals()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DPrivateVolumeSettings.java630 final long otherSize = totalMiscSize + totalDownloadsSize + unaccountedSize; in updateDetails() local
636 updatePreference(otherItem, otherSize); in updateDetails()