Home
last modified time | relevance | path

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

/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DImageCache.java521 Bitmap candidate, BitmapFactory.Options targetOptions) { in canUseForInBitmap() argument
525 return candidate.getWidth() == targetOptions.outWidth in canUseForInBitmap()
526 && candidate.getHeight() == targetOptions.outHeight in canUseForInBitmap()
534 int byteCount = width * height * getBytesPerPixel(candidate.getConfig()); in canUseForInBitmap()
535 return byteCount <= candidate.getAllocationByteCount(); in canUseForInBitmap()