Home
last modified time | relevance | path

Searched refs:split_command (Results 1 – 25 of 25) sorted by relevance

/aosp_15_r20/external/clang/tools/scan-build-py/tests/unit/
H A Dtest_compilation.py39 result = sut.split_command([cmd, '-c', 'src.c'])
55 self.assertIsNotNone(sut.split_command(['clang', 'source.c']))
56 self.assertIsNotNone(sut.split_command(['clang', '-c', 'source.c']))
57 self.assertIsNotNone(sut.split_command(['clang', '-c', 'source.c',
60 self.assertIsNone(sut.split_command(['clang', '-E', 'source.c']))
61 self.assertIsNone(sut.split_command(['clang', '-c', '-E', 'source.c']))
62 self.assertIsNone(sut.split_command(['clang', '-c', '-M', 'source.c']))
64 sut.split_command(['clang', '-c', '-MM', 'source.c']))
68 self.assertEqual(expected, sut.split_command(cmd).files)
81 sut.split_command(['cc', 'this.o', 'that.o', '-o', 'a.out']))
[all …]
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_shlex.py343 for split_command, command in [
350 joined = shlex.join(split_command)
355 for command, *split_command in all_data:
357 joined = shlex.join(split_command)
359 self.assertEqual(split_command, resplit)
/aosp_15_r20/test/app_compat/csuite/integration_tests/
Dcsuite_test_utils.py227 def _shlex_join(split_command: Sequence[str]) -> str:
231 return ' '.join(shlex.quote(t) for t in split_command)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/lib/libscanbuild/
Dintercept.py39 from libscanbuild.compilation import split_command
222 compilation = split_command(exec_trace["command"])
Dcompilation.py61 def split_command(command): function
Danalyze.py42 from libscanbuild.compilation import split_command, classify_source, compiler_language
339 compilation = split_command(execution.cmd)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/lib/libscanbuild/
Dintercept.py39 from libscanbuild.compilation import split_command
222 compilation = split_command(exec_trace["command"])
Dcompilation.py61 def split_command(command): function
Danalyze.py42 from libscanbuild.compilation import split_command, classify_source, compiler_language
339 compilation = split_command(execution.cmd)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/lib/libscanbuild/
Dintercept.py39 from libscanbuild.compilation import split_command
222 compilation = split_command(exec_trace["command"])
Dcompilation.py61 def split_command(command): function
Danalyze.py42 from libscanbuild.compilation import split_command, classify_source, compiler_language
339 compilation = split_command(execution.cmd)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/lib/libscanbuild/
Dintercept.py39 from libscanbuild.compilation import split_command
222 compilation = split_command(exec_trace["command"])
Dcompilation.py61 def split_command(command): function
Danalyze.py42 from libscanbuild.compilation import split_command, classify_source, compiler_language
339 compilation = split_command(execution.cmd)
/aosp_15_r20/external/clang/tools/scan-build-py/libscanbuild/
H A Dintercept.py36 from libscanbuild.compilation import split_command
221 compilation = split_command(exec_trace['command'])
H A Danalyze.py28 from libscanbuild.compilation import split_command
165 compilation = split_command(sys.argv)
H A Dcompilation.py60 def split_command(command): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dshlex.py318 def join(split_command): argument
320 return ' '.join(quote(arg) for arg in split_command)
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dshlex.py318 def join(split_command): argument
320 return ' '.join(quote(arg) for arg in split_command)
/aosp_15_r20/external/python/cpython3/Lib/
Dshlex.py318 def join(split_command): argument
320 return ' '.join(quote(arg) for arg in split_command)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dshlex.py318 def join(split_command): argument
320 return ' '.join(quote(arg) for arg in split_command)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dshlex.py318 def join(split_command): argument
320 return ' '.join(quote(arg) for arg in split_command)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dshlex.py318 def join(split_command): argument
320 return ' '.join(quote(arg) for arg in split_command)
/aosp_15_r20/external/python/cpython3/Doc/library/
Dshlex.rst43 .. function:: join(split_command)
45 Concatenate the tokens of the list *split_command* and return a string.