Home
last modified time | relevance | path

Searched refs:getCompileCommand (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DGlobalCompilationDatabaseTests.cpp67 getCompileCommand(llvm::StringRef File) const override { in getCompileCommand() function in clang::clangd::__anon5160bd650111::OverlayCDBTest::BaseCDB
148 auto Cmd = *CDB.getCompileCommand(testPath("foo.cc")); in TEST_F()
157 Cmd = *CDB.getCompileCommand(testPath("bar.cc")); in TEST_F()
217 DB.getCompileCommand(testPath("build/../a.cc")); in TEST()
223 DB.getCompileCommand(testPath("build/gen.cc")); in TEST()
262 DB.getCompileCommand(testPath("b.cc")); in TEST()
268 DB.getCompileCommand(testPath("build/gen.cc")); in TEST()
284 DB.getCompileCommand(testPath("a.cc")); in TEST()
291 DB.getCompileCommand(testPath("build/gen.cc")); in TEST()
302 .getCompileCommand(testPath(Relative)) in TEST()
[all …]
H A DTestFS.h64 getCompileCommand(PathRef File) const override;
H A DHeadersTests.cpp50 auto Cmd = CDB.getCompileCommand(MainFile); in setupClang()
108 CDB.getCompileCommand(MainFile)->Directory,
127 CDB.getCompileCommand(MainFile)->Directory, in insert()
H A DTestFS.cpp61 MockCompilationDatabase::getCompileCommand(PathRef File) const { in getCompileCommand() function in clang::clangd::MockCompilationDatabase
H A DTUSchedulerTests.cpp93 Inputs.CompileCommand = *CDB.getCompileCommand(File); in getInputs()
1207 getCompileCommand(PathRef File) const override { in TEST_F() function
H A DClangdTests.cpp1115 getCompileCommand(PathRef File) const override { in TEST() function in clang::clangd::__anonadba4dc90111::TEST::DelayedCompilationDatabase
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DGlobalCompilationDatabase.h40 getCompileCommand(PathRef File) const = 0;
74 getCompileCommand(PathRef File) const override;
118 getCompileCommand(PathRef File) const override;
182 getCompileCommand(PathRef File) const override;
H A DGlobalCompilationDatabase.cpp358 DirectoryBasedGlobalCompilationDatabase::getCompileCommand(PathRef File) const { in getCompileCommand() function in clang::clangd::DirectoryBasedGlobalCompilationDatabase
748 OverlayCDB::getCompileCommand(PathRef File) const { in getCompileCommand() function in clang::clangd::OverlayCDB
757 Cmd = DelegatingCDB::getCompileCommand(File); in getCompileCommand()
805 DelegatingCDB::getCompileCommand(PathRef File) const { in getCompileCommand() function in clang::clangd::DelegatingCDB
808 return Base->getCompileCommand(File); in getCompileCommand()
H A DQueryDriverDatabase.cpp327 getCompileCommand(PathRef File) const override { in getCompileCommand() function in clang::clangd::__anona4e500c20111::QueryDriverDatabase
328 auto Cmd = DelegatingCDB::getCompileCommand(File); in getCompileCommand()
H A DTUScheduler.cpp861 auto Cmd = CDB.getCompileCommand(FileName); in update()
867 auto ProxyCmd = CDB.getCompileCommand(ProxyFile); in update()
H A DClangdLSPServer.cpp1340 auto Old = CDB->getCompileCommand(File); in applyConfiguration()
/llvm-project-15.0.7/clang-tools-extra/clangd/tool/
H A DCheck.cpp112 if (auto TrueCmd = CDB->getCompileCommand(File)) { in buildCommand()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DBackground.cpp162 auto Cmd = CDB.getCompileCommand(Path); in indexFileTask()