Searched refs:split_command (Results 1 – 5 of 5) sorted by relevance
/llvm-project/clang/tools/scan-build-py/tests/unit/ |
H A D | test_compilation.py | 35 result = sut.split_command([cmd, "-c", "src.c"]) 51 self.assertIsNotNone(sut.split_command(["clang", "source.c"])) 52 self.assertIsNotNone(sut.split_command(["clang", "-c", "source.c"])) 54 sut.split_command(["clang", "-c", "source.c", "-MF", "a.d"]) 57 self.assertIsNone(sut.split_command(["clang", "-E", "source.c"])) 58 self.assertIsNone(sut.split_command(["clang", "-c", "-E", "source.c"])) 59 self.assertIsNone(sut.split_command(["clang", "-c", "-M", "source.c"])) 60 self.assertIsNone(sut.split_command(["clang", "-c", "-MM", "source.c"])) 64 self.assertEqual(expected, sut.split_command(cmd).files) 76 self.assertIsNone(sut.split_command(["cc", "this.o", "that.o", "-o", "a.out"])) [all …]
|
/llvm-project/lldb/packages/Python/lldbsuite/support/ |
H A D | seven.py | 44 def join_for_shell(split_command): argument 45 return " ".join([shlex.quote(part) for part in split_command])
|
/llvm-project/clang/tools/scan-build-py/lib/libscanbuild/ |
H A D | intercept.py | 39 from libscanbuild.compilation import split_command 222 compilation = split_command(exec_trace["command"])
|
H A D | compilation.py | 61 def split_command(command): function
|
H A D | analyze.py | 42 from libscanbuild.compilation import split_command, classify_source, compiler_language 339 compilation = split_command(execution.cmd)
|