Lines Matching refs:options
175 public static int computeSampleSize(BitmapFactory.Options options, in computeSampleSize() argument
177 int initialSize = computeInitialSampleSize(options, minSideLength, in computeSampleSize()
193 private static int computeInitialSampleSize(BitmapFactory.Options options, in computeInitialSampleSize() argument
195 double w = options.outWidth; in computeInitialSampleSize()
196 double h = options.outHeight; in computeInitialSampleSize()
220 BitmapFactory.Options options = new BitmapFactory.Options(); in makeBitmap() local
221 options.inJustDecodeBounds = true; in makeBitmap()
223 options); in makeBitmap()
224 if (options.mCancel || options.outWidth == -1 in makeBitmap()
225 || options.outHeight == -1) { in makeBitmap()
228 options.inSampleSize = computeSampleSize( in makeBitmap()
229 options, -1, maxNumOfPixels); in makeBitmap()
230 options.inJustDecodeBounds = false; in makeBitmap()
232 options.inDither = false; in makeBitmap()
233 options.inPreferredConfig = Bitmap.Config.ARGB_8888; in makeBitmap()
235 options); in makeBitmap()