HomeSort by relevance Sort by last modified time
    Searched full:add_argument (Results 26 - 50 of 73) sorted by null

12 3

  /external/vixl/tools/
test.py 51 result.add_argument('filters', metavar='filter', nargs='*',
53 result.add_argument('--runner', action='store', required=True,
55 result.add_argument('--coloured_trace', action='store_true',
60 result.add_argument('--debugger', action='store_true',
64 result.add_argument('--verbose', action='store_true',
66 result.add_argument('--jobs', '-j', metavar='N', type=int, nargs='?',
72 result.add_argument('--simulator', action='store', choices=['on', 'off'],
presubmit.py 52 result.add_argument('--verbose', '-v', action='store_true',
54 result.add_argument('--notest', action='store_true',
56 result.add_argument('--nolint', action='store_true',
58 result.add_argument('--noclean', action='store_true',
60 result.add_argument('--fast', action='store_true',
62 result.add_argument('--jobs', '-j', metavar='N', type=int, nargs='?',
68 result.add_argument('--simulator', action='store', choices=['on', 'off'],
  /external/wpa_supplicant_8/hostapd/
wps-ap-nfc.py 271 parser.add_argument('-d', const=logging.DEBUG, default=logging.INFO,
274 parser.add_argument('-q', const=logging.WARNING, action='store_const',
276 parser.add_argument('--only-one', '-1', action='store_true',
278 parser.add_argument('--no-wait', action='store_true',
280 parser.add_argument('--summary',
282 parser.add_argument('--success',
284 parser.add_argument('command', choices=['write-config',
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wps-nfc.py 441 parser.add_argument('-d', const=logging.DEBUG, default=logging.INFO,
444 parser.add_argument('-q', const=logging.WARNING, action='store_const',
446 parser.add_argument('--only-one', '-1', action='store_true',
448 parser.add_argument('--no-wait', action='store_true',
450 parser.add_argument('--uuid',
452 parser.add_argument('--id',
454 parser.add_argument('--summary',
456 parser.add_argument('--success',
458 parser.add_argument('command', choices=['write-config',
p2p-nfc.py 542 parser.add_argument('-d', const=logging.DEBUG, default=logging.INFO,
545 parser.add_argument('-q', const=logging.WARNING, action='store_const',
547 parser.add_argument('--only-one', '-1', action='store_true',
549 parser.add_argument('--init-on-touch', '-I', action='store_true',
551 parser.add_argument('--no-wait', action='store_true',
553 parser.add_argument('--ifname', '-i',
555 parser.add_argument('--no-wps-req', '-N', action='store_true',
557 parser.add_argument('--no-input', '-a', action='store_true',
559 parser.add_argument('--tag-read-only', '-t', action='store_true',
561 parser.add_argument('--handover-only', action='store_true'
    [all...]
  /ndk/
ndk-gdb.py 149 parser.add_argument( '--verbose',
152 parser.add_argument( '--force',
156 parser.add_argument( '--start',
160 parser.add_argument( '--launch',
164 parser.add_argument( '--launch-list',
168 parser.add_argument( '--delay',
173 parser.add_argument( '-p', '--project',
177 parser.add_argument( '--port',
182 parser.add_argument( '-x', '--exec',
186 parser.add_argument( '--adb'
    [all...]
  /external/deqp/android/scripts/
build.py 196 parser.add_argument('--android-build-type', dest='androidBuildType', choices=androidBuildTypes, default='debug', help="Build type for android project..")
197 parser.add_argument('--native-build-type', dest='nativeBuildType', default="RelWithAsserts", choices=nativeBuildTypes, help="Build type passed to cmake when building native code.")
198 parser.add_argument('--build-root', dest='buildRoot', default=common.ANDROID_DIR, help="Root directory for storing build results.")
199 parser.add_argument('--dump-config', dest='dumpConfig', action='store_true', help="Print out all configurations variables")
200 parser.add_argument('--java-api', dest='javaApi', default=common.ANDROID_JAVA_API, help="Set the API signature for the java build.")
201 parser.add_argument('-p', '--parallel-build', dest='parallelBuild', action="store_true", help="Build native libraries in parallel.")
install.py 68 parser.add_argument('-p', '--parallel', dest='doParallel', action="store_true", help="Install package in parallel.")
69 parser.add_argument('-s', '--serial', dest='serial', type=str, nargs='+', help="Install package to device with serial number.")
70 parser.add_argument('-a', '--all', dest='all', action="store_true", help="Install to all devices.")
debug.py 650 parser.add_argument('--adb', dest='adbCmd', default=common.ADB_BIN, help="Path to adb command. Use absolute paths.")
651 parser.add_argument('--deqp-commandline', dest='deqpCmdLine', default="--deqp-log-filename=/sdcard/TestLog.qpa", help="Command line arguments passed to dEQP test binary.")
652 parser.add_argument('--gdb', dest='gdbCmd', default=None, help="gdb command used by script. Use absolute paths")
653 parser.add_argument('--device-gdb', dest='deviceGdbCmd', default=None, help="gdb command used by script on device.")
654 parser.add_argument('--target-gdb-port', dest='targetGDBPort', default=60001, type=int, help="Port used by gdbserver on target.")
655 parser.add_argument('--host-gdb-port', dest='hostGDBPort', default=60002, type=int, help="Host port that is forwarded to device gdbserver port.")
656 parser.add_argument('--jdb', dest='jdbCmd', default="jdb", help="Path to jdb command. Use absolute paths.")
657 parser.add_argument('--jdb-port', dest='jdbPort', default=60003, type=int, help="Host port used to forward jdb commands to device.")
658 parser.add_argument('--build-dir', dest='buildDir', default=None, help="Path to dEQP native build directory.")
659 parser.add_argument('--device-libs', dest='deviceLibs', default=[], nargs='+', help="List of libraries that should b (…)
    [all...]
  /external/deqp/external/
fetch_sources.py 105 parser.add_argument('--clean-only', dest='cleanOnly', action='store_true', default=False,
107 parser.add_argument('--keep-archive', dest='keepArchive', action='store_true', default=False,
  /external/deqp/scripts/src_util/
check_whitespace.py 52 parser.add_argument("-e", "--only-errors", action="store_true", dest="onlyErrors", default=False, help="Print only on error")
53 parser.add_argument("-i", "--only-changed", action="store_true", dest="useGitIndex", default=False, help="Check only modified files. Uses git.")
  /external/llvm/utils/
create_ladder_graph.py 16 parser.add_argument('rungs', type=int,
shuffle_fuzz.py 25 parser.add_argument('-v', '--verbose', action='store_true',
27 parser.add_argument('--seed', default=str(uuid.uuid4()),
29 parser.add_argument('--max-shuffle-height', type=int, default=16,
31 parser.add_argument('--no-blends', dest='blends', action='store_false',
33 parser.add_argument('--fixed-bit-width', type=int, choices=[128, 256],
35 parser.add_argument('--fixed-element-type', choices=element_types,
37 parser.add_argument('--triple',
sort_includes.py 80 parser.add_argument('files', nargs='+', type=argparse.FileType('r+'),
update_llc_test_checks.py 58 parser.add_argument('-v', '--verbose', action='store_true',
60 parser.add_argument('--llc-binary', default='llc',
62 parser.add_argument(
64 parser.add_argument('tests', nargs='+')
  /external/skia/tools/
reformat-json.py 47 parser.add_argument('filenames', metavar='FILENAME', nargs='+',
jsondiff.py 182 parser.add_argument(
187 parser.add_argument(
  /external/lldb/scripts/
buildbot.py 137 parser.add_argument("--build-path", "-b", required=True, help="A (nonexistent) path to put temporary build products into", metavar="path")
138 parser.add_argument("--log-file", "-l", required=True, help="The name of a (nonexistent) log file", metavar="file")
139 parser.add_argument("--revision", "-r", required=False, help="The LLVM revision to use", metavar="N")
  /external/v8/tools/push-to-trunk/
chromium_roll.py 118 parser.add_argument("-c", "--chromium", required=True,
121 parser.add_argument("-l", "--last-push",
123 parser.add_argument("--use-commit-queue",
merge_to_branch.py 269 group.add_argument("--branch", help="The branch to merge to.")
270 group.add_argument("-R", "--revert-bleeding-edge",
273 parser.add_argument("revisions", nargs="*",
275 parser.add_argument("-f", "--force",
278 parser.add_argument("-m", "--message",
280 parser.add_argument("--revert",
283 parser.add_argument("-p", "--patch",
auto_roll.py 107 parser.add_argument("-c", "--chromium", required=True,
110 parser.add_argument("--roll", help="Call Chromium roll script.",
common_includes.py 629 parser.add_argument("-a", "--author", default="",
631 parser.add_argument("--dry-run", default=False, action="store_true",
633 parser.add_argument("-g", "--googlers-mapping",
635 parser.add_argument("-r", "--reviewer", default="",
637 parser.add_argument("--sheriff", default=False, action="store_true",
641 parser.add_argument("--svn",
644 parser.add_argument("--svn-config",
646 parser.add_argument("-s", "--step",
  /external/clang/tools/clang-format/
git-clang-format 86 p.add_argument('--binary',
89 p.add_argument('--commit',
92 p.add_argument('--diff', action='store_true',
94 p.add_argument('--extensions',
99 p.add_argument('-f', '--force', action='store_true',
101 p.add_argument('-p', '--patch', action='store_true',
103 p.add_argument('-q', '--quiet', action='count', default=0,
105 p.add_argument('--style',
108 p.add_argument('-v', '--verbose', action='count', default=0,
113 p.add_argument('args', nargs='*', metavar='<commit>'
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
d8_runner.py 220 parser.add_argument('file_name', help='input file', metavar='FILE',
222 parser.add_argument('--js_args', help='arguments for the js program',
224 parser.add_argument('--source_paths', help='search path for the js program',
  /external/skia/platform_tools/android/tests/
generate_user_config_tests.py 100 parser.add_argument('-r', '--rebaseline', help='Rebaseline expectations.',

Completed in 1160 milliseconds

12 3