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

/external/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_builders = make_option("--ignore-builders", action="store_false", dest="check_builders", default=True, help="Don't check to see if the build.webkit.org builders are green before landing.")
37 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.")
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/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Drun_webkit_tests.py190 return optparse.make_option(option_name, action="callback",
204 optparse.make_option("-t", "--target", dest="configuration",
207 optparse.make_option('--debug', action='store_const', const='Debug',
210 optparse.make_option('--release', action='store_const',
220 optparse.make_option("--chromium", action="store_true", default=False,
222 optparse.make_option("--startup-dialog", action="store_true",
224 optparse.make_option("--gp-fault-error-box", action="store_true",
226 optparse.make_option("--js-flags",
228 optparse.make_option("--stress-opt", action="store_true",
231 optparse.make_option("
[all...]
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmain.py32 from optparse import make_option namespace
52 make_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="enable all logging"),
53 make_option("-d", "--directory", action="append", dest="patch_directories", default=[], help="Directory to look at for changed files"),
54 make_option("--dry-run", action="store_true", dest="dry_run", default=False, help="do not touch remote servers"),
55 make_option("--status-host", action="store", dest="status_host", type="string", help="Hostname (e.g. localhost or commit.webkit.org) where status updates should be posted."),
56 make_option("--bot-id", action="store", dest="bot_id", type="string", help="Identifier for this bot (if multiple bots are running for a queue)"),
57 make_option("--irc-password", action="store", dest="irc_password", type="string", help="Password to use when communicating via IRC."),
58 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.py36 from optparse import OptionParser, IndentedHelpFormatter, SUPPRESS_USAGE, make_option namespace
173 make_option("-a", "--all-commands", action="store_true", dest="show_all_commands", help="Print all available commands"),
/external/bluetooth/bluez/test/
H A Dtest-audio5 from optparse import OptionParser, make_option namespace
12 make_option("-i", "--device", action="store",
H A Dtest-input5 from optparse import OptionParser, make_option namespace
12 make_option("-i", "--device", action="store",
H A Dtest-nap6 from optparse import OptionParser, make_option namespace
14 make_option("-i", "--device", action="store",
H A Dtest-network6 from optparse import OptionParser, make_option namespace
14 make_option("-i", "--device", action="store",
H A Dtest-serial6 from optparse import OptionParser, make_option namespace
13 make_option("-i", "--device", action="store",
H A Dtest-service6 from optparse import OptionParser, make_option namespace
13 make_option("-i", "--device", action="store",
H A Dtest-discovery7 from optparse import OptionParser, make_option namespace
31 make_option("-i", "--device", action="store",
H A Dtest-adapter6 from optparse import OptionParser, make_option namespace
13 make_option("-i", "--device", action="store",
H A Dtest-attrib13 from optparse import OptionParser, make_option namespace
22 make_option("-i", "--device", action="store",
H A Dtest-telephony5 from optparse import OptionParser, make_option namespace
12 make_option("-i", "--device", action="store",
H A Dtest-device9 from optparse import OptionParser, make_option namespace
18 make_option("-i", "--device", action="store",
/external/webkit/Tools/Scripts/
H A Ddeduplicate-tests49 optparse.make_option("-v", "--verbose", dest="verbose",
52 optparse.make_option("-g", "--glob", dest="glob_pattern",
H A Dfind-mismatched-layout-test-results42 optparse.make_option("-p", "--missing-pngs", dest="missing_pngs",
44 optparse.make_option("-c", "--missing-checksums",
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dupload.py35 from optparse import make_option namespace
302 make_option("-b", "--bug-id", action="store", type="string", dest="bug_id", help="Specify bug id if no URL is provided in the commit log."),
303 make_option("--add-log-as-comment", action="store_true", dest="add_log_as_comment", default=False, help="Add commit log message as a comment when uploading the patch."),
304 make_option("-m", "--description", action="store", type="string", dest="description", help="Description string for the attachment (default: description from commit message)"),
352 make_option("--bug-id", action="store", type="string", dest="bug_id", help="Specify bug id if no URL is provided in the commit log."),
353 make_option("--comment", action="store", type="string", dest="comment", help="Text to include in bug comment."),
354 make_option("--open", action="store_true", default=False, dest="open_bug", help="Open bug in default web browser (Mac only)."),
355 make_option("--update-only", action="store_true", default=False, dest="update_only", help="Add comment to the bug, but do not close it."),
434 make_option("--no-prompt", action="store_false", dest="prompt", default=True, help="Do not prompt for bug title and comment; use commit log instead."),
435 make_option("
[all...]
H A Dqueues.py38 from optparse import make_option namespace
68 make_option("--no-confirm", action="store_false", dest="confirm", default=True, help="Do not ask the user for confirmation before running the queue. Dangerous!"),
69 make_option("--exit-after-iteration", action="store", type="int", dest="iterations", default=None, help="Stop running the queue after iterating this number of times."),
H A Dqueries.py31 from optparse import make_option namespace
88 make_option("--bugs", action="store_true", dest="bugs", help="Output bug links instead of patch links"),
H A Drebaselineserver.py46 from optparse import make_option namespace
396 make_option("--httpd-port", action="store", type="int", default=8127, help="Port to use for the the rebaseline HTTP server"),
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dprinting.py117 optparse.make_option("--print", dest="print_options",
120 optparse.make_option("--help-printing", action="store_true",
122 optparse.make_option("-v", "--verbose", action="store_true",
H A Dmanager_worker_broker_unittest.py110 [optparse.make_option("--experimental-fully-parallel", default=False),
111 optparse.make_option("--child-processes", default='2')])
H A Dmanager_worker_broker.py81 optparse.make_option("--worker-model", action="store",

Completed in 5507 milliseconds