Lines Matching refs:Options

38     public static class Options {
40 * Create a default Options object, which if left unchanged will give
43 public Options() {
50 * If set, decode methods that take the Options object will attempt to
63 * set in the Options structure will indicate if the bitmap was reused,
181 * {@link BitmapFactory#decodeResource(Resources, int, android.graphics.BitmapFactory.Options)},
202 * {@link BitmapFactory#decodeResource(Resources, int, android.graphics.BitmapFactory.Options)},
291 * android.graphics.BitmapFactory.Options)} or {@link #decodeFile(String,
292 * android.graphics.BitmapFactory.Options)}.</p>
380 * @param opts null-ok; Options that control downsampling and whether the
386 public static Bitmap decodeFile(String pathName, Options opts) {
425 InputStream is, Rect pad, Options opts) {
428 opts = new Options();
453 * @param opts null-ok; Options that control downsampling and whether the
459 public static Bitmap decodeResource(Resources res, int id, Options opts) {
489 * Synonym for {@link #decodeResource(Resources, int, android.graphics.BitmapFactory.Options)}
490 * with null Options.
507 * @param opts null-ok; Options that control downsampling and whether the
513 public static Bitmap decodeByteArray(byte[] data, int offset, int length, Options opts) {
549 * Set the newly decoded bitmap's density based on the Options.
551 private static void setDensityFromOptions(Bitmap outputBitmap, Options opts) {
585 * @param opts null-ok; Options that control downsampling and whether the
596 public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts) {
630 private static Bitmap decodeStreamInternal(InputStream is, Rect outPadding, Options opts) {
662 * @param opts null-ok; Options that control downsampling and whether the
666 public static Bitmap decodeFileDescriptor(FileDescriptor fd, Rect outPadding, Options opts) {
708 Rect padding, Options opts);
710 Rect padding, Options opts);
711 private static native Bitmap nativeDecodeAsset(long nativeAsset, Rect padding, Options opts);
713 int length, Options opts);