Home
last modified time | relevance | path

Searched refs:shlex (Results 1 - 25 of 64) sorted by relevance

123

/third_party/python/Lib/test/
H A Dtest_shlex.py3 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 Dchangeprefix.py19 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 Dbench.py21 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 Dtest.py21 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 Dlinux_perf.py10 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 Dgen-doctest.py23 import shlex namespace
64 tokens = list(shlex.shlex(params))
/third_party/python/Tools/scripts/
H A Drun_tests.py11 import shlex namespace
83 print(shlex.join(args))
/third_party/python/Lib/
H A Dshlex.py17 __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 Dlog_parser.py23 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 Dupdate_deps.py243 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 Dcommon.py4 import shlex namespace
49 logger.debug(' '.join(shlex.quote(v) for v in argv))
/third_party/skia/gn/
H A Dcompile_sksl_tests.py9 import shlex namespace
20 inputs = shlex.split(reader.read())
/third_party/skia/tools/
H A Dbuild_command_buffer.py16 import shlex namespace
141 subprocess.check_call(['ninja'] + shlex.split(args.extra_ninja_args) +
/third_party/rust/crates/shlex/fuzz/fuzz_targets/
H A Dfuzz_next.rs3 use shlex::Shlex;
/third_party/rust/crates/bindgen/csmith-fuzzing/
H A Ddriver.py6 import shlex namespace
118 result = run_logged(["csmith", "-o", input.name] + shlex.split(args.csmith_args))
H A Dpredicate.py6 import shlex namespace
206 command += shlex.split(args.bindgen_args)
/third_party/python/Tools/freeze/test/
H A Dfreeze.py4 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 Dcreate.py26 import shlex namespace
/third_party/vk-gl-cts/scripts/
H A Dcppcheck.py25 import shlex namespace
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Declipse.py26 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 Declipse.py26 import shlex namespace
98 command = shlex.split(compiler_path)
239 command = shlex.split(compiler_path)
/third_party/mesa3d/src/compiler/glsl/tests/
H A Doptimization_test.py35 # fall back to shlex
39 from shlex import split as split_args
H A Dwarnings_test.py29 # fall back to shlex
33 from shlex import split as split_args
/third_party/mesa3d/src/intel/tools/tests/
H A Drun-test.py12 # fall back to shlex
16 from shlex import split as split_args
/third_party/python/Lib/test/libregrtest/
H A Dcmdline.py3 import shlex namespace
380 ns.python = shlex.split(ns.python)

Completed in 11 milliseconds

123