Lines Matching refs:options
217 public static int computeSampleSize(BitmapFactory.Options options, in computeSampleSize() argument
219 int initialSize = computeInitialSampleSize(options, minSideLength, in computeSampleSize()
235 private static int computeInitialSampleSize(BitmapFactory.Options options, in computeInitialSampleSize() argument
237 double w = options.outWidth; in computeInitialSampleSize()
238 double h = options.outHeight; in computeInitialSampleSize()
262 BitmapFactory.Options options = new BitmapFactory.Options(); in makeBitmap() local
263 options.inJustDecodeBounds = true; in makeBitmap()
265 options); in makeBitmap()
266 if (options.mCancel || options.outWidth == -1 in makeBitmap()
267 || options.outHeight == -1) { in makeBitmap()
270 options.inSampleSize = computeSampleSize( in makeBitmap()
271 options, -1, maxNumOfPixels); in makeBitmap()
272 options.inJustDecodeBounds = false; in makeBitmap()
274 options.inDither = false; in makeBitmap()
275 options.inPreferredConfig = Bitmap.Config.ARGB_8888; in makeBitmap()
277 options); in makeBitmap()