/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
options.py | 29 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("--comment", action="store", type="string", dest="comment", help="Comment to post to bug." [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests.py | 190 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("--stress-deopt", action="store_true" [all...] |
/external/bluetooth/bluez/test/ |
test-nap | 6 from optparse import OptionParser, make_option namespace 14 make_option("-i", "--device", action="store",
|
test-audio | 5 from optparse import OptionParser, make_option namespace 12 make_option("-i", "--device", action="store",
|
test-discovery | 7 from optparse import OptionParser, make_option namespace 31 make_option("-i", "--device", action="store",
|
test-input | 5 from optparse import OptionParser, make_option namespace 12 make_option("-i", "--device", action="store",
|
test-network | 6 from optparse import OptionParser, make_option namespace 14 make_option("-i", "--device", action="store",
|
test-serial | 6 from optparse import OptionParser, make_option namespace 13 make_option("-i", "--device", action="store",
|
test-service | 6 from optparse import OptionParser, make_option namespace 13 make_option("-i", "--device", action="store",
|
test-adapter | 6 from optparse import OptionParser, make_option namespace 13 make_option("-i", "--device", action="store",
|
test-attrib | 13 from optparse import OptionParser, make_option namespace 22 make_option("-i", "--device", action="store",
|
test-device | 9 from optparse import OptionParser, make_option namespace 18 make_option("-i", "--device", action="store",
|
test-telephony | 5 from optparse import OptionParser, make_option namespace 12 make_option("-i", "--device", action="store",
|
/external/webkit/Tools/Scripts/webkitpy/tool/ |
main.py | 32 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, ...)."),
|
multicommandtool_unittest.py | 32 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")
|
multicommandtool.py | 36 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/webkit/Tools/Scripts/ |
deduplicate-tests | 49 optparse.make_option("-v", "--verbose", dest="verbose", 52 optparse.make_option("-g", "--glob", dest="glob_pattern",
|
find-mismatched-layout-test-results | 42 optparse.make_option("-p", "--missing-pngs", dest="missing_pngs", 44 optparse.make_option("-c", "--missing-checksums",
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
upload.py | 35 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("--no-review", action="store_false", dest="review", default=True, help="Do not mark the patch for (…) [all...] |
queries.py | 31 from optparse import make_option namespace 88 make_option("--bugs", action="store_true", dest="bugs", help="Output bug links instead of patch links"),
|
rebaselineserver.py | 46 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"),
|
queues.py | 38 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."),
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
manager_worker_broker_unittest.py | 110 [optparse.make_option("--experimental-fully-parallel", default=False), 111 optparse.make_option("--child-processes", default='2')])
|
printing.py | 117 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",
|
manager_worker_broker.py | 81 optparse.make_option("--worker-model", action="store",
|