HomeSort by relevance Sort by last modified time
    Searched refs:make_option (Results 1 - 19 of 19) sorted by null

  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
options.py 29 from optparse import make_option namespace
32 build = make_option("--no-build", action="store_false", dest="build", default=True, help="Commit without building first, implies --no-test.")
33 build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.")
34 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.")
35 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.")
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 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")
38 close_bug = make_option("--no-close", action="store_false", dest="close_bug", default=True, help="Leave bug open after landing.")
39 complete_rollout = make_option("--complete-rollout", action="store_true", dest="complete_rollout", help="Commit the revert and re-open the original bug.")
40 component = make_option("--component", action="store", type="string", dest="component", help="Component for the new bug."
    [all...]
  /external/bluetooth/bluez/test/
test-audio 5 from optparse import OptionParser, make_option namespace
12 make_option("-i", "--device", action="store",
test-input 5 from optparse import OptionParser, make_option namespace
12 make_option("-i", "--device", action="store",
test-nap 6 from optparse import OptionParser, make_option namespace
14 make_option("-i", "--device", action="store",
test-network 6 from optparse import OptionParser, make_option namespace
14 make_option("-i", "--device", action="store",
test-service 6 from optparse import OptionParser, make_option namespace
13 make_option("-i", "--device", action="store",
test-discovery 7 from optparse import OptionParser, make_option namespace
31 make_option("-i", "--device", action="store",
test-serial 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-telephony 5 from optparse import OptionParser, make_option namespace
12 make_option("-i", "--device", action="store",
test-device 6 from optparse import OptionParser, make_option namespace
13 make_option("-i", "--device", action="store",
  /external/webkit/WebKitTools/Scripts/webkitpy/
multicommandtool_unittest.py 34 from optparse import make_option namespace
54 command_with_args = TrivialCommand(options=[make_option("--my_option")])
146 command_with_options = TrivialCommand(options=[make_option("--my_option")], long_help="LONG HELP")
webkitport.py 33 from optparse import make_option namespace
multicommandtool.py 36 from optparse import OptionParser, IndentedHelpFormatter, SUPPRESS_USAGE, make_option namespace
169 make_option("-a", "--all-commands", action="store_true", dest="show_all_commands", help="Print all available commands"),
  /external/webkit/WebKitTools/Scripts/
webkit-patch 52 make_option("--dry-run", action="store_true", dest="dry_run", default=False, help="do not touch remote servers"),
53 make_option("--status-host", action="store", dest="status_host", type="string", nargs=1, help="Hostname (e.g. localhost or commit.webkit.org) where status updates should be posted."),
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
queries.py 32 from optparse import make_option namespace
67 make_option("--bugs", action="store_true", dest="bugs", help="Output bug links instead of patch links"),
upload.py 36 from optparse import make_option namespace
244 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."),
245 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."),
246 make_option("-m", "--description", action="store", type="string", dest="description", help="Description string for the attachment (default: description from commit message)"),
297 make_option("--bug-id", action="store", type="string", dest="bug_id", help="Specify bug id if no URL is provided in the commit log."),
298 make_option("--comment", action="store", type="string", dest="comment", help="Text to include in bug comment."),
299 make_option("--open", action="store_true", default=False, dest="open_bug", help="Open bug in default web browser (Mac only)."),
300 make_option("--update-only", action="store_true", default=False, dest="update_only", help="Add comment to the bug, but do not close it."),
378 make_option("--no-prompt", action="store_false", dest="prompt", default=True, help="Do not prompt for bug title and comment; use commit log instead."),
379 make_option("--no-review", action="store_false", dest="review", default=True, help="Do not mark the patch for (…)
    [all...]
queues.py 35 from optparse import make_option namespace
59 make_option("--no-confirm", action="store_false", dest="confirm", default=True, help="Do not ask the user for confirmation before running the queue. Dangerous!"),
download.py 32 from optparse import make_option namespace

Completed in 118 milliseconds