/frameworks/compile/slang/tests/ |
H A D | test.py | 21 class Options(object): class in inherits:object 32 if Options.verbose: 36 if Options.verbose: 64 if Options.verbose != 0: 92 if Options.verbose > 1: 111 if Options.verbose > 1: 125 if Options.verbose: 130 if Options.verbose: 134 if Options.verbose: 139 if Options [all...] |
/frameworks/base/tools/aidl/ |
H A D | options.h | 16 struct Options struct 31 // takes the inputs from the command line and fills in the Options struct 34 int parse_options(int argc, const char* const* argv, Options *options);
|
H A D | options.cpp | 35 parse_options(int argc, const char* const* argv, Options *options)
|
/frameworks/base/graphics/java/android/graphics/ |
H A D | BitmapFactory.java | 38 public static class Options { class in class:BitmapFactory 40 * Create a default Options object, which if left unchanged will give 43 public Options() { method in class:BitmapFactory.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)}, 287 * android.graphics.BitmapFactory.Options)} or {@link #decodeFile(String, 288 * android.graphics.BitmapFactory.Options)}.</p> 365 * @param opts null-ok; Options tha [all...] |
H A D | LargeBitmap.java | 57 * @param opts null-ok; Options that control downsampling. 62 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { 124 BitmapFactory.Options options);
|
H A D | BitmapRegionDecoder.java | 177 * @param options null-ok; Options that control downsampling. 182 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { 259 BitmapFactory.Options options);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
H A D | BitmapFactory_Delegate.java | 26 import android.graphics.BitmapFactory.Options; 51 Rect padding, Options opts) { 99 Rect padding, Options opts) { 105 /*package*/ static Bitmap nativeDecodeAsset(int asset, Rect padding, Options opts) { 112 int length, Options opts) {
|
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/ |
H A D | HelloComputeNDK.java | 55 final BitmapFactory.Options options = new BitmapFactory.Options();
|
/frameworks/ex/common/tests/src/com/android/common/ |
H A D | OperationSchedulerTest.java | 47 OperationScheduler.Options options = new OperationScheduler.Options(); 125 OperationScheduler.Options options = new OperationScheduler.Options(); 160 OperationScheduler.Options options = new OperationScheduler.Options(); 162 "OperationScheduler.Options[backoff=0.0+5.0 max=86400.0 min=0.0 period=3600.0]", 166 "OperationScheduler.Options[backoff=0.0+2.5 max=86400.0 min=0.0 period=3700.0]", 170 "OperationScheduler.Options[backoff=10.0+2.5 max=12345.6 min=7.0 period=3800.0]", 175 "OperationScheduler.Options[backof [all...] |
/frameworks/base/media/java/android/media/ |
H A D | ThumbnailUtils.java | 54 /* Options used internally. */ 111 BitmapFactory.Options options = new BitmapFactory.Options(); 256 private static int computeSampleSize(BitmapFactory.Options options, 274 private static int computeInitialSampleSize(BitmapFactory.Options options, 305 * Clients are allowed to pass their own BitmapFactory.Options used for bitmap decoding. A 306 * new BitmapFactory.Options will be created if options is null. 310 BitmapFactory.Options options) { 315 if (options == null) options = new BitmapFactory.Options(); 491 BitmapFactory.Options fullOption [all...] |
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/ |
H A D | ImageUtils.java | 110 final BitmapFactory.Options opts = new BitmapFactory.Options(); 130 * BitmapFactory.Options)} that returns {@code null} on {@link 139 * @param opts null-ok; Options that control downsampling and whether the 146 final BitmapFactory.Options opts) throws FileNotFoundException { 159 Log.w(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options): " 174 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an OOME", oome); 177 Log.e(TAG, "ImageUtils#decodeStream(InputStream, Rect, Options) threw an IOE", ioe); 199 final BitmapFactory.Options opts = new BitmapFactory.Options(); [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
H A D | Main.java | 51 public static class Options { class in class:Main 57 public static final Options sOptions = new Options();
|
/frameworks/base/core/java/android/app/backup/ |
H A D | WallpaperBackupHelper.java | 126 BitmapFactory.Options options = new BitmapFactory.Options();
|
/frameworks/base/media/java/android/media/videoeditor/ |
H A D | TransitionAlpha.java | 98 final BitmapFactory.Options dbo = new BitmapFactory.Options();
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | BitmapsAlphaActivity.java | 56 BitmapFactory.Options opts = new BitmapFactory.Options();
|
H A D | BitmapsActivity.java | 69 BitmapFactory.Options opts = new BitmapFactory.Options();
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/ |
H A D | BitmapRegionTileSource.java | 51 Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options); 91 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) { 123 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) { 187 BitmapFactory.Options opts = new BitmapFactory.Options(); 223 public abstract Bitmap loadPreviewBitmap(BitmapFactory.Options options); 242 public Bitmap loadPreviewBitmap(BitmapFactory.Options options) { 291 public Bitmap loadPreviewBitmap(BitmapFactory.Options options) { 348 public Bitmap loadPreviewBitmap(BitmapFactory.Options options) { 375 private BitmapFactory.Options mOption [all...] |
/frameworks/av/include/media/stagefright/ |
H A D | MediaSource.h | 62 // Options that modify read() behaviour. The default is to 86 enum Options { enum in struct:android::MediaSource::ReadOptions
|
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
H A D | TestService.java | 817 BitmapFactory.Options opts = new BitmapFactory.Options(); 836 BitmapFactory.Options opts = new BitmapFactory.Options(); 856 BitmapFactory.Options opts = new BitmapFactory.Options(); 876 BitmapFactory.Options opts = new BitmapFactory.Options(); 897 BitmapFactory.Options opts = new BitmapFactory.Options(); [all...] |
/frameworks/ex/common/java/com/android/common/ |
H A D | OperationScheduler.java | 37 public static class Options { class in class:OperationScheduler 60 "OperationScheduler.Options[backoff=%.1f+%.1f+%.1f max=%.1f min=%.1f period=%.1f]", 67 "OperationScheduler.Options[backoff=%.1f+%.1f max=%.1f min=%.1f period=%.1f]", 106 public static Options parseOptions(String spec, Options options) 150 public long getNextTimeMillis(Options options) { 251 * Limited by {@link Options#maxMoratoriumMillis}. 265 * Limited by {@link Options#maxMoratoriumMillis}.
|
/frameworks/base/core/java/android/app/ |
H A D | WallpaperManager.java | 294 BitmapFactory.Options options = new BitmapFactory.Options(); 322 BitmapFactory.Options options = new BitmapFactory.Options(); 434 BitmapFactory.Options options = new BitmapFactory.Options(); 486 BitmapFactory.Options options = new BitmapFactory.Options(); 500 BitmapFactory.Options options = new BitmapFactory.Options(); [all...] |
/frameworks/compile/slang/ |
H A D | slang_backend.cpp | 125 // Target Machine Options 126 llvm::TargetOptions Options; local 128 Options.NoFramePointerElim = mCodeGenOpts.DisableFPElim; 135 // Options.FloatABIType = llvm::FloatABI::Soft; 136 // Options.UseSoftFloat = true; 137 Options.FloatABIType = llvm::FloatABI::Hard; 138 Options.UseSoftFloat = false; 171 Options, RM, CM);
|
/frameworks/support/v4/kitkat/android/support/v4/print/ |
H A D | PrintHelperKitkat.java | 51 BitmapFactory.Options mDecodeOptions = null; 461 BitmapFactory.Options opt = new BitmapFactory.Options(); 486 BitmapFactory.Options decodeOptions = null; 488 mDecodeOptions = new BitmapFactory.Options(); 506 private Bitmap loadBitmap(Uri uri, BitmapFactory.Options o) throws FileNotFoundException {
|
/frameworks/volley/src/com/android/volley/toolbox/ |
H A D | ImageRequest.java | 139 BitmapFactory.Options decodeOptions = new BitmapFactory.Options();
|
/frameworks/compile/mclinker/tools/llvm-mcld/ |
H A D | llvm-mcld.cpp | 251 // Command Line Options 262 // Bitcode Options 270 // General Options 812 // Scripting Options 1038 // ----- Set up General Options ----- // 1458 TargetOptions Options; local 1459 Options.LessPreciseFPMADOption = EnableFPMAD; 1460 Options.NoFramePointerElim = DisableFPElim; 1461 Options.NoFramePointerElimNonLeaf = DisableFPElimNonLeaf; 1462 Options [all...] |