Home | History | Annotate | Download | only in util

Lines Matching refs:targetOptions

515      * @param targetOptions - Options that have the out* value populated
517 * <code>targetOptions</code>
521 Bitmap candidate, BitmapFactory.Options targetOptions) {
525 return candidate.getWidth() == targetOptions.outWidth
526 && candidate.getHeight() == targetOptions.outHeight
527 && targetOptions.inSampleSize == 1;
532 int width = targetOptions.outWidth / targetOptions.inSampleSize;
533 int height = targetOptions.outHeight / targetOptions.inSampleSize;