Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/clang/bindings/python/tests/cindex/
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')
/openbsd/src/gnu/llvm/clang/lib/Tooling/
DGuessTargetAndModeCompilationDatabase.cpp33 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in clang::tooling::__anone17f503b0111::TargetAndModeAdderDatabase
34 return addTargetAndMode(Base->getCompileCommands(FilePath)); in getCompileCommands()
DExpandResponseFilesCompilationDatabase.cpp41 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in clang::tooling::__anoned9aed770111::ExpandResponseFilesDatabase
42 return expand(Base->getCompileCommands(FilePath)); in getCompileCommands()
DCommonOptionsParser.cpp60 std::vector<CompileCommand> ArgumentsAdjustingCompilations::getCompileCommands( in getCompileCommands() function in ArgumentsAdjustingCompilations
62 return adjustCommands(Compilations->getCompileCommands(FilePath)); in getCompileCommands()
DInterpolatingCompilationDatabase.cpp508 getCompileCommands(StringRef Filename) const override { in getCompileCommands() function in clang::tooling::__anona4fe12350111::InterpolatingCompilationDatabase
509 auto Known = Inner->getCompileCommands(Filename); in getCompileCommands()
517 Inner->getCompileCommands(Index.chooseProxy(Filename, foldType(Lang))); in getCompileCommands()
DCompilationDatabase.cpp135 auto C = getCompileCommands(File); in getAllCompileCommands()
382 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in FixedCompilationDatabase
DJSONCompilationDatabase.cpp226 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in JSONCompilationDatabase
DTooling.cpp537 Compilations.getCompileCommands(File); in run()
/openbsd/src/gnu/llvm/clang/include/clang/Tooling/
DCompilationDatabase.h129 virtual std::vector<CompileCommand> getCompileCommands(
208 getCompileCommands(StringRef FilePath) const override;
DJSONCompilationDatabase.h84 getCompileCommands(StringRef FilePath) const override;
DCommonOptionsParser.h127 getCompileCommands(StringRef FilePath) const override;
/openbsd/src/gnu/llvm/clang/tools/libclang/
DCXCompilationDatabase.cpp50 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName)); in clang_CompilationDatabase_getCompileCommands()
/openbsd/src/gnu/llvm/clang/tools/clang-scan-deps/
DClangScanDeps.cpp611 getCompileCommands(StringRef FilePath) const override { in getCompilationDataBase() function in getCompilationDataBase::InplaceCompilationDatabase
/openbsd/src/gnu/llvm/clang/bindings/python/clang/
Dcindex.py3313 def getCompileCommands(self, filename): member in CompilationDatabase