HomeSort by relevance Sort by last modified time
    Searched refs:Options (Results 1 - 25 of 178) sorted by null

1 2 3 4 5 6 7 8

  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactory_OptionsTest.java 24 @TestTargetClass(BitmapFactory.Options.class)
28 method = "BitmapFactory.Options",
32 new BitmapFactory.Options();
41 BitmapFactory.Options option = new BitmapFactory.Options();
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
postdiff.py 32 from webkitpy.steps.options import Options
37 def options(cls): member in class:PostDiff
39 Options.description,
40 Options.review,
41 Options.request_commit,
42 Options.open_bug,
createbug.py 30 from webkitpy.steps.options import Options
35 def options(cls): member in class:CreateBug
37 Options.cc,
38 Options.component,
update.py 30 from webkitpy.steps.options import Options
36 def options(cls): member in class:Update
38 Options.update,
39 Options.port,
build.py 30 from webkitpy.steps.options import Options
36 def options(cls): member in class:Build
38 Options.build,
39 Options.quiet,
40 Options.build_style,
preparechangelog.py 33 from webkitpy.steps.options import Options
39 def options(cls): member in class:PrepareChangeLog
41 Options.port,
42 Options.quiet,
43 Options.email,
runtests.py 30 from webkitpy.steps.options import Options
35 def options(cls): member in class:RunTests
37 Options.build,
38 Options.test,
39 Options.non_interactive,
40 Options.quiet,
41 Options.port,
checkstyle.py 33 from webkitpy.steps.options import Options
38 def options(cls): member in class:CheckStyle
40 Options.non_interactive,
41 Options.check_style,
cleanworkingdirectory.py 32 from webkitpy.steps.options import Options
36 def __init__(self, tool, options, allow_local_commits=False):
37 AbstractStep.__init__(self, tool, options)
41 def options(cls): member in class:CleanWorkingDirectory
43 Options.force_clean,
44 Options.clean,
applypatch.py 30 from webkitpy.steps.options import Options
35 def options(cls): member in class:ApplyPatch
37 Options.non_interactive,
applypatchwithlocalcommit.py 30 from webkitpy.steps.options import Options
34 def options(cls): member in class:ApplyPatchWithLocalCommit
36 Options.local_commit,
37 ] + ApplyPatch.options()
confirmdiff.py 30 from webkitpy.steps.options import Options
36 def options(cls): member in class:ConfirmDiff
38 Options.confirm,
ensurebuildersaregreen.py 30 from webkitpy.steps.options import Options
36 def options(cls): member in class:EnsureBuildersAreGreen
38 Options.check_builders,
ensurelocalcommitifneeded.py 30 from webkitpy.steps.options import Options
36 def options(cls): member in class:EnsureLocalCommitIfNeeded
38 Options.local_commit,
closebug.py 30 from webkitpy.steps.options import Options
36 def options(cls): member in class:CloseBug
38 Options.close_bug,
closebugforlanddiff.py 31 from webkitpy.steps.options import Options
37 def options(cls): member in class:CloseBugForLandDiff
39 Options.close_bug,
obsoletepatches.py 31 from webkitpy.steps.options import Options
37 def options(cls): member in class:ObsoletePatches
39 Options.obsolete_patches,
  /frameworks/base/tools/aidl/
options.h 15 // This struct is the parsed version of the command line options
16 struct Options
30 // takes the inputs from the command line and fills in the Options struct
33 int parse_options(int argc, const char* const* argv, Options *options);
  /external/chromium/base/
simple_thread.h 58 class Options {
60 Options() : stack_size_(0) { }
61 ~Options() { }
72 // Create a SimpleThread. |options| should be used to manage any specific
79 SimpleThread(const std::string& name_prefix, const Options& options)
80 : name_prefix_(name_prefix), name_(name_prefix), options_(options),
112 const Options options_;
133 const Options& options)
    [all...]
thread.h 22 struct Options {
31 Options() : message_loop_type(MessageLoop::TYPE_DEFAULT), stack_size(0) {}
32 Options(MessageLoop::Type type, size_t size)
57 // override the default options.
62 bool StartWithOptions(const Options& options);
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 120 struct Options {
136 Options(); // Initializes with default values.
139 // Create a GzipOutputStream with default options.
142 // Create a GzipOutputStream with the given options.
145 const Options& options);
193 void Init(ZeroCopyOutputStream* sub_stream, const Options& options);
  /packages/apps/Gallery3D/src/com/cooliris/media/
ResourceTexture.java 44 BitmapFactory.Options options = new BitmapFactory.Options(); local
45 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
46 bitmap = BitmapFactory.decodeResource(view.getResources(), mResourceId, options);
51 BitmapFactory.Options options = new BitmapFactory.Options(); local
52 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
53 bitmap = BitmapFactory.decodeStream(inputStream, null, options);
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
select-options-remove.js 1 description("This test checks the behavior of the remove() method on the select.options object.");
6 debug("1.1 Remove (object) from empty Options");
8 shouldBe("select1.options.remove(value)", "undefined");
9 shouldBe("select1.options.length", "0");
13 debug("1.2 Remove (string) from empty Options");
15 shouldBe("select1.options.remove(value)", "undefined");
16 shouldBe("select1.options.length", "0");
20 debug("1.3 Remove (float) from empty Options");
22 shouldBe("select1.options.remove(value)", "undefined");
23 shouldBe("select1.options.length", "0")
    [all...]
  /frameworks/base/graphics/java/android/graphics/
BitmapFactory.java 36 public static class Options {
38 * Create a default Options object, which if left unchanged will give
41 public Options() {
94 * {@link BitmapFactory#decodeResource(Resources, int, android.graphics.BitmapFactory.Options)},
115 * {@link BitmapFactory#decodeResource(Resources, int, android.graphics.BitmapFactory.Options)},
245 * This can be called from another thread while this options object is
263 * @param opts null-ok; Options that control downsampling and whether the
269 public static Bitmap decodeFile(String pathName, Options opts) {
307 InputStream is, Rect pad, Options opts) {
310 opts = new Options();
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
ResourceTexture.java 39 BitmapFactory.Options options = new BitmapFactory.Options();
40 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
42 mContext.getResources(), mResId, options);

Completed in 352 milliseconds

1 2 3 4 5 6 7 8