Searched refs:split_command (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/unit/
H A Dtest_compilation.py38 result = sut.split_command([cmd, '-c', 'src.c'])
54 self.assertIsNotNone(sut.split_command(['clang', 'source.c']))
55 self.assertIsNotNone(sut.split_command(['clang', '-c', 'source.c']))
56 self.assertIsNotNone(sut.split_command(['clang', '-c', 'source.c',
59 self.assertIsNone(sut.split_command(['clang', '-E', 'source.c']))
60 self.assertIsNone(sut.split_command(['clang', '-c', '-E', 'source.c']))
61 self.assertIsNone(sut.split_command(['clang', '-c', '-M', 'source.c']))
63 sut.split_command(['clang', '-c', '-MM', 'source.c']))
67 self.assertEqual(expected, sut.split_command(cmd).files)
80 sut.split_command(['c
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
H A Dcompilation.py11 __all__ = ['split_command', 'classify_source', 'compiler_language']
14 # The map is used in `split_command` method. (Which does ignore and classify
59 def split_command(command): function
H A Dintercept.py34 from libscanbuild.compilation import split_command namespace
213 compilation = split_command(exec_trace['command'])
H A Danalyze.py34 from libscanbuild.compilation import split_command, classify_source, \
312 compilation = split_command(execution.cmd)
35 compiler_language namespace

Completed in 105 milliseconds