Searched refs:make_option (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A Doptions.py29 from optparse import make_option namespace
32 blocks = make_option("--blocks", action="store", type="string", dest="blocks", default=None, help="Bug number which the created bug blocks.")
33 build = make_option("--build", action="store_true", dest="build", default=False, help="Build and run run-webkit-tests before committing.")
34 build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.")
35 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.")
36 check_style = make_option("--ignore-style", action="store_false", dest="check_style", default=True, help="Don't check to see if the patch has proper style before uploading.")
37 check_style_filter = make_option("--check-style-filter", action="store", type="string", dest="check_style_filter", default=None, help="Filter style-checker rules (see check-webkit-style --help).")
38 clean = make_option("--no-clean", action="store_false", dest="clean", default=True, help="Don't check if the working directory is clean before applying patches")
39 close_bug = make_option("--no-close", action="store_false", dest="close_bug", default=True, help="Leave bug open after landing.")
40 comment = make_option("
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Drun_webkit_tests.py104 optparse.make_option("--nocheck-sys-deps", action="store_true",
107 optparse.make_option("--adb-device",
113 optparse.make_option("-p", "--pixel", "--pixel-tests", action="store_true",
115 optparse.make_option("--no-pixel", "--no-pixel-tests", action="store_false",
117 optparse.make_option("--results-directory", help="Location of test results"),
118 optparse.make_option("--build-directory",
120 optparse.make_option("--add-platform-exceptions", action="store_true", default=False,
122 optparse.make_option("--new-baseline", action="store_true",
126 optparse.make_option("--reset-results", action="store_true",
129 optparse.make_option("
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
H A Dmain.py32 from optparse import make_option namespace
44 make_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="enable all logging"),
45 make_option("-d", "--directory", action="append", dest="patch_directories", default=[], help="Directory to look at for changed files"),
46 make_option("--seconds-to-sleep", action="store", default=120, type="int", help="Number of seconds to sleep in the task queue."),
47 make_option("--port", action="store", dest="port", default=None, help="Specify a port (e.g., mac, qt, gtk, ...)."),
H A Dmulticommandtool_unittest.py32 from optparse import make_option namespace
72 command_with_args = TrivialCommand(options=[make_option("--my_option")])
170 command_with_options = TrivialCommand(options=[make_option("--my_option")], long_help="LONG HELP")
H A Dmulticommandtool.py37 from optparse import OptionParser, IndentedHelpFormatter, SUPPRESS_USAGE, make_option namespace
178 make_option("-a", "--all-commands", action="store_true", dest="show_all_commands", help="Print all available commands"),
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dabstractlocalservercommand.py25 from optparse import make_option namespace
37 make_option("--httpd-port", action="store", type="int", default=8127, help="Port to use for the HTTP server"),
38 make_option("--no-show-results", action="store_false", default=True, dest="show_results", help="Don't launch a browser with the rebaseline server"),
H A Dcommitannouncer.py27 from optparse import make_option namespace
44 make_option("--irc-password", default=None, help="Specify IRC password to use."),
H A Dqueries.py35 from optparse import make_option namespace
66 make_option('--all', action='store_true', default=False,
68 make_option('-x', '--exclude-keyword', action='append', default=[],
70 make_option('-i', '--include-keyword', action='append', default=[],
72 make_option('--csv', action='store_true', default=False,
74 make_option('-f', '--full', action='store_true', default=False,
76 make_option('--paths', action='store_true', default=False,
157 make_option('--all', action='store_true', default=False,
159 make_option('--csv', action='store_true', default=False,
161 make_option('
[all...]
H A Drebaseline.py59 no_optimize_option = optparse.make_option('--no-optimize', dest='optimize', action='store_false', default=True,
65 results_directory_option = optparse.make_option("--results-directory", help="Local results directory to use")
67 suffixes_option = optparse.make_option("--suffixes", default=','.join(BASELINE_SUFFIX_LIST), action="store",
80 optparse.make_option("--builder", help="Builder to pull new baselines from"),
81 optparse.make_option("--test", help="Test to rebaseline"),
256 optparse.make_option('--missing', action='store_true', default=False, help='show missing baselines as well'),
517 optparse.make_option("--builders", default=None, action="append", help="Comma-separated-list of builders to pull new baselines from (can also be provided multiple times)"),
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dfactory.py40 optparse.make_option('--platform', action='store',
44 optparse.make_option('--chromium', action='store_const', dest='platform',
48 optparse.make_option('--android', action='store_const', dest='platform',
56 optparse.make_option("-t", "--target", dest="configuration",
58 optparse.make_option('--debug', action='store_const', const='Debug', dest="configuration",
60 optparse.make_option('--release', action='store_const', const='Release', dest="configuration",
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
H A Dperftestsrunner.py81 optparse.make_option('--debug', action='store_const', const='Debug', dest="configuration",
83 optparse.make_option('--release', action='store_const', const='Release', dest="configuration",
85 optparse.make_option("--platform",
87 optparse.make_option("--chromium",
89 optparse.make_option("--android",
91 optparse.make_option("--builder-name",
93 optparse.make_option("--build-number",
95 optparse.make_option("--build", dest="build", action="store_true", default=True,
97 optparse.make_option("--no-build", dest="build", action="store_false",
99 optparse.make_option("
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dcmdline.py13 append = optparse.make_option(
18 branch = optparse.make_option(
22 directory = optparse.make_option(
27 help = optparse.make_option(
31 ignore_errors = optparse.make_option(
35 include = optparse.make_option(
41 pylib = optparse.make_option(
46 show_missing = optparse.make_option(
51 old_omit = optparse.make_option(
57 omit = optparse.make_option(
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dprinting.py45 optparse.make_option('-q', '--quiet', action='store_true', default=False,
47 optparse.make_option('--timing', action='store_true', default=False,
49 optparse.make_option('-v', '--verbose', action='store_true', default=False,
51 optparse.make_option('--details', action='store_true', default=False,
53 optparse.make_option('--debug-rwt-logging', action='store_true', default=False,

Completed in 379 milliseconds