Home
last modified time | relevance | path

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

/external/clang/include/clang/Tooling/
DCompilationDatabase.h131 virtual std::vector<CompileCommand> getAllCompileCommands() const = 0;
211 std::vector<CompileCommand> getAllCompileCommands() const override;
DJSONCompilationDatabase.h88 std::vector<CompileCommand> getAllCompileCommands() const override;
/external/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp60 static std::vector<CompileCommand> getAllCompileCommands(StringRef JSONDatabase, in getAllCompileCommands() function
68 return Database->getAllCompileCommands(); in getAllCompileCommands()
95 getAllCompileCommands("[]", ErrorMessage).size()) << ErrorMessage; in TEST()
104 std::vector<CompileCommand> Commands = getAllCompileCommands( in TEST()
123 Commands = getAllCompileCommands( in TEST()
479 EXPECT_EQ(0ul, Database.getAllCompileCommands().size()); in TEST()
/external/clang/lib/Tooling/
DCommonOptionsParser.cpp77 std::vector<CompileCommand> getAllCompileCommands() const override { in getAllCompileCommands() function in __anon849a07f20111::ArgumentsAdjustingCompilations
78 return adjustCommands(Compilations->getAllCompileCommands()); in getAllCompileCommands()
DCompilationDatabase.cpp319 FixedCompilationDatabase::getAllCompileCommands() const { in getAllCompileCommands() function in FixedCompilationDatabase
DJSONCompilationDatabase.cpp207 JSONCompilationDatabase::getAllCompileCommands() const { in getAllCompileCommands() function in clang::tooling::JSONCompilationDatabase
/external/clang/bindings/python/tests/cindex/
Dtest_cdb.py38 cmds = cdb.getAllCompileCommands()
/external/clang/tools/libclang/
DCXCompilationDatabase.cpp63 std::vector<CompileCommand> CCmd(db->getAllCompileCommands()); in clang_CompilationDatabase_getAllCompileCommands()
/external/clang/bindings/python/clang/
Dcindex.py2840 def getAllCompileCommands(self): member in CompilationDatabase