Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp101 assert(Compilations.getAllCompileCommands().size() == 1 && in getDependencyFile()
103 std::string Input = Compilations.getAllCompileCommands().front().Filename; in getDependencyFile()
176 assert(Compilations.getAllCompileCommands().size() == 1 && in getFullDependencies()
178 std::string Input = Compilations.getAllCompileCommands().front().Filename; in getFullDependencies()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DGuessTargetAndModeCompilationDatabase.cpp28 std::vector<CompileCommand> getAllCompileCommands() const override { in getAllCompileCommands() function in clang::tooling::__anon14fa794a0111::TargetAndModeAdderDatabase
29 return addTargetAndMode(Base->getAllCompileCommands()); in getAllCompileCommands()
H A DExpandResponseFilesCompilationDatabase.cpp45 std::vector<CompileCommand> getAllCompileCommands() const override { in getAllCompileCommands() function in clang::tooling::__anon907b38660111::ExpandResponseFilesDatabase
46 return expand(Base->getAllCompileCommands()); in getAllCompileCommands()
H A DCommonOptionsParser.cpp71 ArgumentsAdjustingCompilations::getAllCompileCommands() const { in getAllCompileCommands() function in ArgumentsAdjustingCompilations
72 return adjustCommands(Compilations->getAllCompileCommands()); in getAllCompileCommands()
H A DInterpolatingCompilationDatabase.cpp538 std::vector<CompileCommand> getAllCompileCommands() const override { in getAllCompileCommands() function in clang::tooling::__anon983895e40111::InterpolatingCompilationDatabase
539 return Inner->getAllCompileCommands(); in getAllCompileCommands()
H A DCompilationDatabase.cpp132 std::vector<CompileCommand> CompilationDatabase::getAllCompileCommands() const { in getAllCompileCommands() function in CompilationDatabase
H A DJSONCompilationDatabase.cpp255 JSONCompilationDatabase::getAllCompileCommands() const { in getAllCompileCommands() function in JSONCompilationDatabase
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/
H A DJSONCompilationDatabase.h93 std::vector<CompileCommand> getAllCompileCommands() const override;
H A DCommonOptionsParser.h131 std::vector<CompileCommand> getAllCompileCommands() const override;
H A DCompilationDatabase.h147 virtual std::vector<CompileCommand> getAllCompileCommands() const;
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp214 std::vector<tooling::CompileCommand> getAllCompileCommands() const override { in getAllCompileCommands() function in SingleCommandCompilationDatabase
565 AdjustingCompilations->getAllCompileCommands()) in main()
593 tooling::CompileCommand Cmd = Input->getAllCompileCommands()[0]; in main()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXCompilationDatabase.cpp61 std::vector<CompileCommand> CCmd(db->getAllCompileCommands()); in clang_CompilationDatabase_getAllCompileCommands()
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_cdb.py61 cmds = cdb.getAllCompileCommands()
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/clang/
H A Dcindex.py3264 def getAllCompileCommands(self): member in CompilationDatabase