Searched refs:split_command (Results  1 – 7 of 7) sorted by relevance
| /external/clang/tools/scan-build-py/tests/unit/ | 
| 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 …]
 
 | 
| /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)
 
 | 
| /external/clang/tools/scan-build-py/libscanbuild/ | 
| D | intercept.py | 36 from libscanbuild.compilation import split_command221     compilation = split_command(exec_trace['command'])
 
 | 
| D | compilation.py | 60 def split_command(command):  function
 | 
| D | analyze.py | 28 from libscanbuild.compilation import split_command165         compilation = split_command(sys.argv)
 
 | 
| /external/python/cpython3/Lib/ | 
| D | shlex.py | 318 def join(split_command):  argument320     return ' '.join(quote(arg) for arg in split_command)
 
 | 
| /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.
 
 |