Lines Matching refs:options
215 public static int computeSampleSize(BitmapFactory.Options options, in computeSampleSize() argument
217 int initialSize = computeInitialSampleSize(options, minSideLength, in computeSampleSize()
233 private static int computeInitialSampleSize(BitmapFactory.Options options, in computeInitialSampleSize() argument
235 double w = options.outWidth; in computeInitialSampleSize()
236 double h = options.outHeight; in computeInitialSampleSize()
260 BitmapFactory.Options options = new BitmapFactory.Options(); in makeBitmap() local
261 options.inJustDecodeBounds = true; in makeBitmap()
263 options); in makeBitmap()
264 if (options.mCancel || options.outWidth == -1 in makeBitmap()
265 || options.outHeight == -1) { in makeBitmap()
268 options.inSampleSize = computeSampleSize( in makeBitmap()
269 options, -1, maxNumOfPixels); in makeBitmap()
270 options.inJustDecodeBounds = false; in makeBitmap()
272 options.inDither = false; in makeBitmap()
273 options.inPreferredConfig = Bitmap.Config.ARGB_8888; in makeBitmap()
275 options); in makeBitmap()