/aosp_15_r20/external/clang/tools/scan-build-py/tests/unit/ |
H A D | test_compilation.py | 39 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/ |
D | test_shlex.py | 343 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/ |
D | csuite_test_utils.py | 227 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/ |
D | intercept.py | 39 from libscanbuild.compilation import split_command 222 compilation = split_command(exec_trace["command"])
|
D | compilation.py | 61 def split_command(command): function
|
D | analyze.py | 42 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/ |
D | intercept.py | 39 from libscanbuild.compilation import split_command 222 compilation = split_command(exec_trace["command"])
|
D | compilation.py | 61 def split_command(command): function
|
D | analyze.py | 42 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/ |
D | intercept.py | 39 from libscanbuild.compilation import split_command 222 compilation = split_command(exec_trace["command"])
|
D | compilation.py | 61 def split_command(command): function
|
D | analyze.py | 42 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/ |
D | intercept.py | 39 from libscanbuild.compilation import split_command 222 compilation = split_command(exec_trace["command"])
|
D | compilation.py | 61 def split_command(command): function
|
D | analyze.py | 42 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 D | intercept.py | 36 from libscanbuild.compilation import split_command 221 compilation = split_command(exec_trace['command'])
|
H A D | analyze.py | 28 from libscanbuild.compilation import split_command 165 compilation = split_command(sys.argv)
|
H A D | compilation.py | 60 def split_command(command): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ |
D | shlex.py | 318 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 D | shlex.py | 318 def join(split_command): argument 320 return ' '.join(quote(arg) for arg in split_command)
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | shlex.py | 318 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/ |
D | shlex.py | 318 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/ |
D | shlex.py | 318 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/ |
D | shlex.py | 318 def join(split_command): argument 320 return ' '.join(quote(arg) for arg in split_command)
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | shlex.rst | 43 .. function:: join(split_command) 45 Concatenate the tokens of the list *split_command* and return a string.
|