Home
last modified time | relevance | path

Searched refs:getCompileCommands (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_cdb.py48 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
55 cmds = cdb.getCompileCommands(str_to_path('/home/john.doe/MyProject/project.cpp'))
89 cmds = cdb.getCompileCommands(file)
101 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp')
121 for cmd in cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp'):
128 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
136 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DGuessTargetAndModeCompilationDatabase.cpp33 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in clang::tooling::__anon14fa794a0111::TargetAndModeAdderDatabase
34 return addTargetAndMode(Base->getCompileCommands(FilePath)); in getCompileCommands()
H A DExpandResponseFilesCompilationDatabase.cpp41 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in clang::tooling::__anon907b38660111::ExpandResponseFilesDatabase
42 return expand(Base->getCompileCommands(FilePath)); in getCompileCommands()
H A DCommonOptionsParser.cpp60 std::vector<CompileCommand> ArgumentsAdjustingCompilations::getCompileCommands( in getCompileCommands() function in ArgumentsAdjustingCompilations
62 return adjustCommands(Compilations->getCompileCommands(FilePath)); in getCompileCommands()
H A DInterpolatingCompilationDatabase.cpp519 getCompileCommands(StringRef Filename) const override { in getCompileCommands() function in clang::tooling::__anon983895e40111::InterpolatingCompilationDatabase
520 auto Known = Inner->getCompileCommands(Filename); in getCompileCommands()
528 Inner->getCompileCommands(Index.chooseProxy(Filename, foldType(Lang))); in getCompileCommands()
H A DCompilationDatabase.cpp135 auto C = getCompileCommands(File); in getAllCompileCommands()
382 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in FixedCompilationDatabase
H A DJSONCompilationDatabase.cpp229 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in JSONCompilationDatabase
H A DTooling.cpp503 Compilations.getCompileCommands(File); in run()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/
H A DCompilationDatabase.h129 virtual std::vector<CompileCommand> getCompileCommands(
208 getCompileCommands(StringRef FilePath) const override;
H A DJSONCompilationDatabase.h84 getCompileCommands(StringRef FilePath) const override;
H A DCommonOptionsParser.h127 getCompileCommands(StringRef FilePath) const override;
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXCompilationDatabase.cpp50 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName)); in clang_CompilationDatabase_getCompileCommands()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp210 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in SingleCommandCompilationDatabase
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/clang/
H A Dcindex.py3256 def getCompileCommands(self, filename): member in CompilationDatabase