/external/chromium_org/third_party/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_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("--comment", action="store", type="string", dest="comment", help="Comment to post to bug." [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests.py | 100 optparse.make_option("--adb-device", 105 optparse.make_option("--no-android-logging", 111 optparse.make_option("-p", "--pixel", "--pixel-tests", action="store_true", 113 optparse.make_option("--no-pixel", "--no-pixel-tests", action="store_false", 115 optparse.make_option("--results-directory", help="Location of test results"), 116 optparse.make_option("--build-directory", 118 optparse.make_option("--add-platform-exceptions", action="store_true", default=False, 120 optparse.make_option("--new-baseline", action="store_true", 124 optparse.make_option("--reset-results", action="store_true", 127 optparse.make_option("--no-new-test-results", action="store_false" [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/ |
perftestsrunner.py | 81 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("--build-directory" [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
queries.py | 35 from optparse import make_option namespace 68 make_option('--all', action='store_true', default=False, 70 make_option('-x', '--exclude-keyword', action='append', default=[], 72 make_option('-i', '--include-keyword', action='append', default=[], 74 make_option('--csv', action='store_true', default=False, 76 make_option('-f', '--full', action='store_true', default=False, 78 make_option('--paths', action='store_true', default=False, 160 make_option('--all', action='store_true', default=False, 162 make_option('--csv', action='store_true', default=False, 164 make_option('--include-virtual-tests', action='store_true' [all...] |
abstractlocalservercommand.py | 25 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"),
|
commitannouncer.py | 27 from optparse import make_option namespace 45 make_option("--irc-password", default=None, help="Specify IRC password to use."),
|
rebaseline.py | 61 no_optimize_option = optparse.make_option('--no-optimize', dest='optimize', action='store_false', default=True, 67 results_directory_option = optparse.make_option("--results-directory", help="Local results directory to use") 69 suffixes_option = optparse.make_option("--suffixes", default=','.join(BASELINE_SUFFIX_LIST), action="store", 82 optparse.make_option("--builder", help="Builder to pull new baselines from"), 83 optparse.make_option("--test", help="Test to rebaseline"), 265 optparse.make_option('--missing', action='store_true', default=False, help='show missing baselines as well'), 554 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)"), 606 optparse.make_option("--log-server", help="Server to send logs to.") [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
factory.py | 40 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/tool/ |
main.py | 32 from optparse import make_option namespace 43 make_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="enable all logging"), 44 make_option("-d", "--directory", action="append", dest="patch_directories", default=[], help="Directory to look at for changed files"),
|
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 | 37 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/thirdparty/coverage/ |
cmdline.py | 13 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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_optparse.py | 20 from optparse import make_option, Option, \ 195 # -- Test make_option() aka Option ------------------------------------- 206 self.assertRaises(make_option, args, kwargs, 210 self.assertTypeError(make_option, 636 options = [make_option("-a", type="string"), 637 make_option("-b", "--boo", type="int", dest='boo'), 638 make_option("--foo", action="append")] 781 options = [make_option("-v", 786 make_option("-q", 840 self.v_opt = make_option("-v", action="count", dest="verbose" 23 BadOptionError, OptionValueError, Values namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_optparse.py | 20 from optparse import make_option, Option, \ 195 # -- Test make_option() aka Option ------------------------------------- 206 self.assertRaises(make_option, args, kwargs, 210 self.assertTypeError(make_option, 636 options = [make_option("-a", type="string"), 637 make_option("-b", "--boo", type="int", dest='boo'), 638 make_option("--foo", action="append")] 781 options = [make_option("-v", 786 make_option("-q", 840 self.v_opt = make_option("-v", action="count", dest="verbose" 23 BadOptionError, OptionValueError, Values namespace [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/ |
printing.py | 45 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,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
optparse.py | 27 'make_option', 1703 make_option = Option variable [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
optparse.py | 27 'make_option', 1703 make_option = Option variable [all...] |