Home
last modified time | relevance | path

Searched refs:run_command (Results 1 – 8 of 8) sorted by relevance

/llvm-project/clang/tools/scan-build-py/lib/libscanbuild/
H A Dclang.py12 from libscanbuild import run_command
38 output = run_command([clang, "-v"])
54 output = run_command(cmd, cwd=cwd)
157 lines = run_command(cmd)
176 run_command([extdef_map_cmd, "-version"])
H A Danalyze.py33 run_command,
556 run_command(cmd, cwd=cwd)
616 output = run_command(cmd, cwd=cwd)
677 run_command(ast_command, cwd=opts["directory"])
690 extdef_src_list = run_command(extdefmap_command, cwd=opts["directory"])
H A Dintercept.py35 run_command,
251 return any(pattern.match(line) for line in run_command(command))
H A D__init__.py60 def run_command(command, cwd=None): function
/llvm-project/llvm/utils/
H A Dcollect_and_build_with_pgo.py161 def run_command(self, cmd, cwd=None, check=False, silent_unless_error=False): member in Env
227 env.run_command(cmd, cwd=target_dir, check=True)
240 env.run_command(cmake_args, cwd=target_dir, check=True, silent_unless_error=True)
262 env.run_command(cmd, check=True)
/llvm-project/lldb/test/API/test_runner/test/
H A Dtest_process_control.py100 driver.run_command(self.inferior_command())
107 driver.run_command(self.inferior_command(options="-r10"))
/llvm-project/libcxx/utils/
H A Dadb_run.py84 def run_command(args: argparse.Namespace) -> int: function
252 return run_command(args)
/llvm-project/lldb/packages/Python/lldbsuite/test/test_runner/
H A Dprocess_control.py526 def run_command(self, command): member in ProcessDriver