Searched defs:mBitmapOptions (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java2649 static BitmapFactory.Options mBitmapOptions = new BitmapFactory.Options(); field in class:Allocation
2651 mBitmapOptions.inScaled = false;
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DAllocation.java2542 static BitmapFactory.Options mBitmapOptions = new BitmapFactory.Options(); field in class:Allocation
2544 mBitmapOptions.inScaled = false;
/frameworks/base/media/java/android/media/
H A DMediaScanner.java362 private final BitmapFactory.Options mBitmapOptions = new BitmapFactory.Options(); field in class:MediaScanner
404 mBitmapOptions.inSampleSize = 1;
405 mBitmapOptions.inJustDecodeBounds = true;
822 mBitmapOptions.outWidth = 0;
823 mBitmapOptions.outHeight = 0;
824 BitmapFactory.decodeFile(path, mBitmapOptions);
825 mWidth = mBitmapOptions.outWidth;
826 mHeight = mBitmapOptions.outHeight;

Completed in 6528 milliseconds