Home
last modified time | relevance | path

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

/external/clang/bindings/python/tests/cindex/
Dtest_cdb.py27 assert cdb.getCompileCommands('file_do_not_exist.cpp') == None
32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
65 cmds = cdb.getCompileCommands(file)
77 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp')
96 for cmd in cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp'):
103 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
111 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
/external/clang/include/clang/Tooling/
DCompilationDatabase.h119 virtual std::vector<CompileCommand> getCompileCommands(
200 getCompileCommands(StringRef FilePath) const override;
DJSONCompilationDatabase.h79 getCompileCommands(StringRef FilePath) const override;
/external/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp149 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName); in findCompileArgsInJsonDatabase()
453 Database.getCompileCommands(FileName); in TEST()
508 Database->getCompileCommands("source"); in TEST()
527 Database->getCompileCommands("source"); in TEST()
544 Database->getCompileCommands("source"); in TEST()
563 Database->getCompileCommands("source"); in TEST()
/external/clang/lib/Tooling/
DCommonOptionsParser.cpp69 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in __anon849a07f20111::ArgumentsAdjustingCompilations
70 return adjustCommands(Compilations->getCompileCommands(FilePath)); in getCompileCommands()
DCompilationDatabase.cpp306 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in FixedCompilationDatabase
DJSONCompilationDatabase.cpp173 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in clang::tooling::JSONCompilationDatabase
DTooling.cpp391 Compilations.getCompileCommands(File); in run()
/external/clang/tools/libclang/
DCXCompilationDatabase.cpp52 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName)); in clang_CompilationDatabase_getCompileCommands()
/external/clang/bindings/python/clang/
Dcindex.py2832 def getCompileCommands(self, filename): member in CompilationDatabase