/third_party/python/Lib/test/ |
H A D | test_shlex.py | 3 import shlex namespace 151 l = shlex.split(data[i][0], comments=comments) 158 lex = shlex.shlex(io.StringIO(s)) 168 shlex.split(None) 193 s = shlex.shlex(ss, punctuation_chars=True) 209 s = shlex.shlex(ss, punctuation_chars=True) 225 s = shlex [all...] |
/third_party/littlefs/scripts/ |
H A D | changeprefix.py | 19 import shlex namespace 97 print(' '.join(shlex.quote(c) for c in cmd)) 124 print(' '.join(shlex.quote(c) for c in cmd)) 128 print(' '.join(shlex.quote(c) for c in cmd))
|
H A D | bench.py | 21 import shlex namespace 567 print(' '.join(shlex.quote(c) for c in cmd)) 580 print(' '.join(shlex.quote(c) for c in cmd)) 610 print(' '.join(shlex.quote(c) for c in cmd)) 654 print(' '.join(shlex.quote(c) for c in cmd)) 684 print(' '.join(shlex.quote(c) for c in cmd)) 793 print(' '.join(shlex.quote(c) for c in cmd)) 1003 print('using runner: %s' % ' '.join(shlex.quote(c) for c in runner_)) 1103 ' '.join(shlex.quote(c) for c in runner_), 1175 print(' '.join(shlex [all...] |
H A D | test.py | 21 import shlex namespace 584 print(' '.join(shlex.quote(c) for c in cmd)) 597 print(' '.join(shlex.quote(c) for c in cmd)) 627 print(' '.join(shlex.quote(c) for c in cmd)) 671 print(' '.join(shlex.quote(c) for c in cmd)) 701 print(' '.join(shlex.quote(c) for c in cmd)) 803 print(' '.join(shlex.quote(c) for c in cmd)) 1009 print('using runner: %s' % ' '.join(shlex.quote(c) for c in runner_)) 1103 ' '.join(shlex.quote(c) for c in runner_), 1209 print(' '.join(shlex [all...] |
/third_party/node/deps/v8/tools/chrome/ |
H A D | linux_perf.py | 10 import shlex namespace 139 log("CHROME CMD: ", shlex.join(cmd)) 148 log("LINUX PERF CMD: ", shlex.join(cmd)) 181 print(shlex.join(cmd))
|
/third_party/jerryscript/tools/ |
H A D | gen-doctest.py | 23 import shlex namespace 64 tokens = list(shlex.shlex(params))
|
/third_party/python/Tools/scripts/ |
H A D | run_tests.py | 11 import shlex namespace 83 print(shlex.join(args))
|
/third_party/python/Lib/ |
H A D | shlex.py | 17 __all__ = ["shlex", "split", "quote", "join"] 19 class shlex: class 75 print("shlex: pushing token " + repr(tok)) 88 print('shlex: pushing to file %s' % (self.infile,)) 90 print('shlex: pushing to stream %s' % (self.instream,)) 97 print('shlex: popping to %s, line %d' \ 106 print("shlex: popping token " + repr(tok)) 128 print("shlex: token=" + repr(raw)) 130 print("shlex: token=EOF") 144 print("shlex [all...] |
/third_party/vk-gl-cts/scripts/log/ |
H A D | log_parser.py | 23 import shlex namespace 78 # In Python 3, shlex works better with unicode. 79 return shlex.split(line) 81 # In Python 2, shlex works better with bytes, so encode and decode again upon return. 82 return [w.decode('utf-8') for w in shlex.split(line.encode('utf-8'))]
|
/third_party/vulkan-loader/scripts/ |
H A D | update_deps.py | 243 import shlex namespace 438 command_output(shlex.split(p), self.repo_dir) 441 command_output(shlex.split(p), self.repo_dir) 444 command_output(shlex.split(p), self.repo_dir) 456 command_output(shlex.split(cmd), self.repo_dir)
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
H A D | common.py | 4 import shlex namespace 49 logger.debug(' '.join(shlex.quote(v) for v in argv))
|
/third_party/skia/gn/ |
H A D | compile_sksl_tests.py | 9 import shlex namespace 20 inputs = shlex.split(reader.read())
|
/third_party/skia/tools/ |
H A D | build_command_buffer.py | 16 import shlex namespace 141 subprocess.check_call(['ninja'] + shlex.split(args.extra_ninja_args) +
|
/third_party/rust/crates/shlex/fuzz/fuzz_targets/ |
H A D | fuzz_next.rs | 3 use shlex::Shlex;
|
/third_party/rust/crates/bindgen/csmith-fuzzing/ |
H A D | driver.py | 6 import shlex namespace 118 result = run_logged(["csmith", "-o", input.name] + shlex.split(args.csmith_args))
|
H A D | predicate.py | 6 import shlex namespace 206 command += shlex.split(args.bindgen_args)
|
/third_party/python/Tools/freeze/test/ |
H A D | freeze.py | 4 import shlex namespace 23 #print(f'# {" ".join(shlex.quote(a) for a in cmd)}') 156 *shlex.split(get_config_var(srcdir, 'CONFIG_ARGS') or ''),
|
/third_party/skia/infra/bots/assets/win_toolchain/ |
H A D | create.py | 26 import shlex namespace
|
/third_party/vk-gl-cts/scripts/ |
H A D | cppcheck.py | 25 import shlex namespace
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | eclipse.py | 26 import shlex namespace 98 command = shlex.split(compiler_path) 239 command = shlex.split(compiler_path)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | eclipse.py | 26 import shlex namespace 98 command = shlex.split(compiler_path) 239 command = shlex.split(compiler_path)
|
/third_party/mesa3d/src/compiler/glsl/tests/ |
H A D | optimization_test.py | 35 # fall back to shlex 39 from shlex import split as split_args
|
H A D | warnings_test.py | 29 # fall back to shlex 33 from shlex import split as split_args
|
/third_party/mesa3d/src/intel/tools/tests/ |
H A D | run-test.py | 12 # fall back to shlex 16 from shlex import split as split_args
|
/third_party/python/Lib/test/libregrtest/ |
H A D | cmdline.py | 3 import shlex namespace 380 ns.python = shlex.split(ns.python)
|