Home
last modified time | relevance | path

Searched defs:Cmd (Results 1 – 25 of 80) sorted by relevance

1234

/external/llvm-project/clang-tools-extra/clangd/unittests/
DCompileCommandsTests.cpp44 std::vector<std::string> Cmd = {"clang++", "-Xclang", "-load", "-Xclang", in TEST() local
56 std::vector<std::string> Cmd = {"clang++", "foo.cc"}; in TEST() local
65 std::vector<std::string> Cmd = {"clang++", "foo.cc"}; in TEST() local
73 std::vector<std::string> Cmd = {"clang++", "-Xclang", "-load", in TEST() local
82 std::vector<std::string> Cmd = {"clang++", "-MF", "dependency", "-c", in TEST() local
91 std::vector<std::string> Cmd = {"clang-cl", "/showIncludes", "foo.cc"}; in TEST() local
98 std::vector<std::string> Cmd = {"clang-cl", "/showIncludes:user", "foo.cc"}; in TEST() local
107 std::vector<std::string> Cmd = {"clang++", "foo.cc"}; in TEST() local
162 std::vector<std::string> Cmd = {(TempDir + "/bin/foo").str(), "foo.cc"}; in TEST() local
193 std::vector<std::string> Cmd = {"clang++", "foo.cc"}; in TEST() local
DBackgroundIndexTests.cpp103 tooling::CompileCommand Cmd; in TEST_F() local
122 tooling::CompileCommand Cmd; in TEST_F() local
152 for (auto &Cmd : Cmds) { in TEST_F() local
196 tooling::CompileCommand Cmd; in TEST_F() local
253 tooling::CompileCommand Cmd; in TEST_F() local
277 tooling::CompileCommand Cmd; in TEST_F() local
309 tooling::CompileCommand Cmd; in TEST_F() local
379 tooling::CompileCommand Cmd; in TEST_F() local
428 tooling::CompileCommand Cmd; in TEST_F() local
502 tooling::CompileCommand Cmd; in TEST_F() local
[all …]
DGlobalCompilationDatabaseTests.cpp44 auto Cmd = DB.getFallbackCommand(testPath("foo/bar.cc")); in TEST() local
141 [](const std::vector<std::string> &Cmd, llvm::StringRef File) { in TEST_F()
148 auto Cmd = CDB.getCompileCommand(testPath("foo.cc")).getValue(); in TEST_F() local
/external/clang/tools/libclang/
DCXCompilationDatabase.cpp139 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd); in clang_CompileCommand_getArg() local
162 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd); in clang_CompileCommand_getMappedSourcePath() local
176 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd); in clang_CompileCommand_getMappedSourceContent() local
/external/llvm-project/clang-tools-extra/clangd/index/
DSerialization.h49 llvm::Optional<tooling::CompileCommand> Cmd; member
63 const tooling::CompileCommand *Cmd = nullptr; member
DBackground.cpp69 llvm::SmallString<128> getAbsolutePath(const tooling::CompileCommand &Cmd) { in getAbsolutePath()
142 for (auto &Cmd : NeedsReIndexing) in changedFilesTask() local
163 auto Cmd = CDB.getCompileCommand(Path); in indexFileTask() local
251 llvm::Error BackgroundIndex::index(tooling::CompileCommand Cmd) { in index()
/external/llvm-project/clang-tools-extra/clangd/
DGlobalCompilationDatabase.cpp56 tooling::CompileCommand Cmd(llvm::sys::path::parent_path(File), in getFallbackCommand() local
360 llvm::Optional<tooling::CompileCommand> Cmd; in getCompileCommand() local
377 auto Cmd = Base ? Base->getFallbackCommand(File) in getFallbackCommand() local
388 PathRef File, llvm::Optional<tooling::CompileCommand> Cmd) { in setCompileCommand()
DQueryDriverDatabase.cpp232 addSystemIncludes(tooling::CompileCommand &Cmd, in addSystemIncludes()
242 tooling::CompileCommand &setTarget(tooling::CompileCommand &Cmd, in setTarget()
312 auto Cmd = Base->getCompileCommand(File); in getCompileCommand() local
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerUtilLinux.cpp23 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
DFuzzerUtilWindows.cpp167 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
172 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand()
DFuzzerDriver.cpp236 Command Cmd(BaseCmd); in WorkerThread() local
277 std::string Cmd; in CloneArgsWithoutX() local
290 Command Cmd(Args); in RunInMultipleProcesses() local
360 Command Cmd(Args); in CleanseCrashInput() local
433 Command Cmd(BaseCmd); in MinimizeCrashInput() local
DFuzzerDataFlowTrace.cpp268 Command Cmd; in CollectDataFlow() local
278 Command Cmd; in CollectDataFlow() local
DFuzzerUtilDarwin.cpp41 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerUtilLinux.cpp23 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
DFuzzerUtilWindows.cpp167 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
172 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand()
DFuzzerDriver.cpp236 Command Cmd(BaseCmd); in WorkerThread() local
277 std::string Cmd; in CloneArgsWithoutX() local
290 Command Cmd(Args); in RunInMultipleProcesses() local
360 Command Cmd(Args); in CleanseCrashInput() local
433 Command Cmd(BaseCmd); in MinimizeCrashInput() local
DFuzzerDataFlowTrace.cpp268 Command Cmd; in CollectDataFlow() local
278 Command Cmd; in CollectDataFlow() local
/external/boringssl/src/util/testconfig/
Dtestconfig.go23 Cmd []string `json:"cmd"` member
/external/rust/crates/structopt/examples/
Ddeny_missing_docs.rs29 pub enum Cmd { enum
/external/clang/lib/Frontend/
DCreateInvocationFromCommandLine.cpp89 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin()); in createInvocationFromCommandLine() local
/external/llvm-project/clang/lib/Tooling/
DGuessTargetAndModeCompilationDatabase.cpp40 for (auto &Cmd : Cmds) { in addTargetAndMode() local
DExpandResponseFilesCompilationDatabase.cpp51 for (auto &Cmd : Cmds) { in expand() local
/external/llvm-project/clang/lib/Frontend/
DCreateInvocationFromCommandLine.cpp86 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin()); in createInvocationFromCommandLine() local
/external/rust/crates/weak-table/tests/
Dweak_key_hash_map.rs33 pub enum Cmd<K, V> enum
140 impl<K: Arbitrary, V: Arbitrary> Arbitrary for Cmd<K, V> { implementation
/external/llvm-project/libc/utils/HdrGen/
DGenerator.cpp94 Command *Cmd = getCommandHandler(CommandName); in generate() local

1234