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

1 2 3 4 5 6 7 8 91011

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
postdiff.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:PostDiff
36 return AbstractStep.options() + [
37 Options.description,
38 Options.comment,
39 Options.review,
40 Options.request_commit,
41 Options.open_bug,
applypatch.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:ApplyPatch
36 return AbstractStep.options() + [
37 Options.non_interactive,
38 Options.force_patch,
update.py 30 from webkitpy.tool.steps.options import Options
36 def options(cls): member in class:Update
37 return AbstractStep.options() + [
38 Options.update,
39 Options.quiet,
build.py 30 from webkitpy.tool.steps.options import Options
36 def options(cls): member in class:Build
37 return AbstractStep.options() + [
38 Options.build,
39 Options.quiet,
40 Options.build_style,
createbug.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:CreateBug
36 return AbstractStep.options() + [
37 Options.cc,
38 Options.component,
39 Options.blocks,
attachtobug.py 32 from webkitpy.tool.steps.options import Options
37 def options(cls): member in class:AttachToBug
38 return AbstractStep.options() + [
39 Options.comment,
40 Options.description,
cleanworkingdirectory.py 32 from webkitpy.tool.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
42 return AbstractStep.options() + [
43 Options.force_clean,
44 Options.clean,
suggestreviewers.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:SuggestReviewers
36 return AbstractStep.options() + [
37 Options.git_commit,
38 Options.suggest_reviewers,
applypatchwithlocalcommit.py 30 from webkitpy.tool.steps.options import Options
34 def options(cls): member in class:ApplyPatchWithLocalCommit
35 return ApplyPatch.options() + [
36 Options.local_commit,
ensurelocalcommitifneeded.py 30 from webkitpy.tool.steps.options import Options
36 def options(cls): member in class:EnsureLocalCommitIfNeeded
37 return AbstractStep.options() + [
38 Options.local_commit,
checkstyle.py 33 from webkitpy.tool.steps.options import Options
38 def options(cls): member in class:CheckStyle
39 return AbstractStep.options() + [
40 Options.non_interactive,
41 Options.check_style,
42 Options.git_commit,
runtests.py 30 from webkitpy.tool.steps.options import Options
38 def options(cls): member in class:RunTests
39 return AbstractStep.options() + [
40 Options.test,
41 Options.non_interactive,
42 Options.quiet,
  /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();
  /frameworks/compile/slang/tests/
test.py 21 class Options(object):
34 if Options.verbose:
38 if Options.verbose:
59 if Options.verbose != 0:
85 if Options.verbose > 1:
104 if Options.verbose > 1:
118 if Options.verbose:
123 if Options.verbose:
127 if Options.verbose:
132 if Options.verbose
    [all...]
  /external/webkit/Source/WebCore/editing/
TypingCommand.h 58 typedef unsigned Options;
60 static void deleteSelection(Document*, Options = 0);
61 static void deleteKeyPressed(Document*, Options = 0, TextGranularity = CharacterGranularity);
62 static void forwardDeleteKeyPressed(Document*, Options = 0, TextGranularity = CharacterGranularity);
63 static void insertText(Document*, const String&, Options, TextCompositionType = TextCompositionNone);
64 static void insertText(Document*, const String&, const VisibleSelection&, Options, TextCompositionType = TextCompositionNone);
65 static void insertLineBreak(Document*, Options);
66 static void insertParagraphSeparator(Document*, Options);
85 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
compile.h 58 // Debug The Compiler options:
60 } Options;
65 Options options; // Compile options and parameters member in struct:CPPStruct_Rec
  /frameworks/base/tools/aidl/
options.h 15 // This struct is the parsed version of the command line options
16 struct Options
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);
  /external/clang/include/clang/Driver/
Makefile 2 BUILT_SOURCES = Options.inc CC1Options.inc CC1AsOptions.inc
8 $(ObjDir)/Options.inc.tmp : Options.td OptParser.td $(CLANG_TBLGEN) $(ObjDir)/.dir
  /external/chromium/base/threading/
simple_thread.h 60 class BASE_API Options {
62 Options() : stack_size_(0) { }
63 ~Options() { }
74 // Create a SimpleThread. |options| should be used to manage any specific
79 SimpleThread(const std::string& name_prefix, const Options& options);
110 const Options options_;
130 const Options& options);
thread.h 31 struct Options {
32 Options() : message_loop_type(MessageLoop::TYPE_DEFAULT), stack_size(0) {}
33 Options(MessageLoop::Type type, size_t size)
66 // override the default options.
71 bool StartWithOptions(const Options& options);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DecodeUtils.java 28 import android.graphics.BitmapFactory.Options;
42 Options mOptions;
43 public DecodeCanceller(Options options) {
44 mOptions = options;
52 Options options) {
53 if (options == null) options = new Options();
    [all...]
  /external/chromium/android/autofill/
android_url_request_context_getter.cc 40 base::Thread::Options options; local
41 options.message_loop_type = MessageLoop::TYPE_IO;
42 if (!io_thread_->StartWithOptions(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);
  /sdk/assetstudio/tests/src/com/android/assetstudiolib/
MenuIconGeneratorTest.java 25 checkGraphic(4, "menus", baseName, generator, new GraphicGenerator.Options());
  /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...]

Completed in 693 milliseconds

1 2 3 4 5 6 7 8 91011