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')
59 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
70 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp')
89 for cmd in cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp'):
96 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
104 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
/external/clang/include/clang/Tooling/
DCompilationDatabase.h113 virtual std::vector<CompileCommand> getCompileCommands(
194 getCompileCommands(StringRef FilePath) const override;
DJSONCompilationDatabase.h71 getCompileCommands(StringRef FilePath) const override;
/external/clang/lib/Tooling/
DCommonOptionsParser.cpp69 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in __anon89a024690111::ArgumentsAdjustingCompilations
70 return adjustCommands(Compilations->getCompileCommands(FilePath)); in getCompileCommands()
DCompilationDatabase.cpp310 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.cpp331 Compilations.getCompileCommands(File); in run()
/external/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp122 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName); in findCompileArgsInJsonDatabase()
406 Database.getCompileCommands("source"); in TEST()
460 Database->getCompileCommands("source"); in TEST()
479 Database->getCompileCommands("source"); in TEST()
496 Database->getCompileCommands("source"); in TEST()
515 Database->getCompileCommands("source"); in TEST()
/external/clang/tools/libclang/
DCXCompilationDatabase.cpp52 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName)); in clang_CompilationDatabase_getCompileCommands()
/external/clang/bindings/python/clang/
Dcindex.py2742 def getCompileCommands(self, filename): member in CompilationDatabase