Searched refs:_parse_args (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_regrtest.py | 50 Test regrtest's argument parsing, function _parse_args(). 55 libregrtest._parse_args(args) 63 libregrtest._parse_args([opt]) 67 ns = libregrtest._parse_args(['--timeout', '4.2']) 73 ns = libregrtest._parse_args(['--wait']) 77 ns = libregrtest._parse_args(['--worker-args', '[[], {}]']) 84 ns = libregrtest._parse_args([opt, 'foo']) 89 ns = libregrtest._parse_args(['-v']) 91 ns = libregrtest._parse_args(['-vvv']) 93 ns = libregrtest._parse_args([' [all...] |
H A D | test_argparse.py | 255 self._parse_args = parse_args 258 parse_args_name = self._parse_args.__name__ 291 result_ns = self._parse_args(parser, args)
|
/third_party/python/Lib/test/libregrtest/ |
H A D | __init__.py | 1 from test.libregrtest.cmdline import _parse_args, RESOURCE_NAMES, ALL_RESOURCES namespace
|
H A D | cmdline.py | 352 def _parse_args(args, **kwargs): function
|
H A D | main.py | 12 from test.libregrtest.cmdline import _parse_args namespace 188 ns = _parse_args(sys.argv[1:], **kwargs)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/ |
H A D | update.py | 148 def _parse_args(): function 353 args = _parse_args()
|
/third_party/python/Lib/ |
H A D | pathlib.py | 485 def _parse_args(cls, args): member in PurePath 506 # We need to call _parse_args on the instance, so as to get the 509 drv, root, parts = self._parse_args(args) 531 drv, root, parts = self._parse_args(args) 721 to_drv, to_root, to_parts = self._parse_args(other) 830 # optimizations in PurePath._parse_args().
|
/third_party/node/deps/v8/tools/testrunner/ |
H A D | base_runner.py | 288 options, args = self._parse_args(parser, sys_args) 443 def _parse_args(self, parser, sys_args): member in BaseTestRunner
|
Completed in 15 milliseconds