/external/clang/bindings/python/tests/cindex/ |
D | test_cdb.py | 27 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/llvm-project/clang/bindings/python/tests/cindex/ |
D | test_cdb.py | 48 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')
|
/external/llvm-project/clang/unittests/Tooling/ |
D | CompilationDatabaseTest.cpp | 184 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName); in findCompileArgsInJsonDatabase() 520 Database.getCompileCommands(FileName); in TEST() 558 std::vector<CompileCommand> Result = CDB->getCompileCommands("/foo/bar.cc"); in TEST() 599 Database->getCompileCommands("source"); in TEST() 616 Database->getCompileCommands("source"); in TEST() 633 Database->getCompileCommands("source"); in TEST() 651 std::vector<CompileCommand> Result = Database->getCompileCommands("source"); in TEST() 668 Database->getCompileCommands("source"); in TEST() 682 std::vector<CompileCommand> getCompileCommands(StringRef F) const override { in getCompileCommands() function 731 ->getCompileCommands(path(F)); in getCommand() [all …]
|
D | ExecutionTest.cpp | 236 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in clang::tooling::FixedCompilationDatabaseWithFiles 237 return FixedCompilations.getCompileCommands(FilePath); in getCompileCommands()
|
/external/llvm-project/clang/lib/Tooling/ |
D | GuessTargetAndModeCompilationDatabase.cpp | 33 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in clang::tooling::__anon2ee4aa760111::TargetAndModeAdderDatabase 34 return addTargetAndMode(Base->getCompileCommands(FilePath)); in getCompileCommands()
|
D | ExpandResponseFilesCompilationDatabase.cpp | 41 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in clang::tooling::__anone7ab8f120111::ExpandResponseFilesDatabase 42 return expand(Base->getCompileCommands(FilePath)); in getCompileCommands()
|
D | CommonOptionsParser.cpp | 60 std::vector<CompileCommand> ArgumentsAdjustingCompilations::getCompileCommands( in getCompileCommands() function in ArgumentsAdjustingCompilations 62 return adjustCommands(Compilations->getCompileCommands(FilePath)); in getCompileCommands()
|
D | InterpolatingCompilationDatabase.cpp | 512 getCompileCommands(StringRef Filename) const override { in getCompileCommands() function in clang::tooling::__anond7485b900111::InterpolatingCompilationDatabase 513 auto Known = Inner->getCompileCommands(Filename); in getCompileCommands() 521 Inner->getCompileCommands(Index.chooseProxy(Filename, foldType(Lang))); in getCompileCommands()
|
D | CompilationDatabase.cpp | 135 auto C = getCompileCommands(File); in getAllCompileCommands() 382 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in FixedCompilationDatabase
|
D | JSONCompilationDatabase.cpp | 229 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in JSONCompilationDatabase
|
D | Tooling.cpp | 498 Compilations.getCompileCommands(File); in run()
|
/external/clang/include/clang/Tooling/ |
D | CompilationDatabase.h | 119 virtual std::vector<CompileCommand> getCompileCommands( 200 getCompileCommands(StringRef FilePath) const override;
|
D | JSONCompilationDatabase.h | 79 getCompileCommands(StringRef FilePath) const override;
|
/external/llvm-project/clang/include/clang/Tooling/ |
D | CompilationDatabase.h | 129 virtual std::vector<CompileCommand> getCompileCommands( 207 getCompileCommands(StringRef FilePath) const override;
|
D | JSONCompilationDatabase.h | 84 getCompileCommands(StringRef FilePath) const override;
|
D | CommonOptionsParser.h | 139 getCompileCommands(StringRef FilePath) const override;
|
/external/clang/lib/Tooling/ |
D | CommonOptionsParser.cpp | 69 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in __anonc87c79100111::ArgumentsAdjustingCompilations 70 return adjustCommands(Compilations->getCompileCommands(FilePath)); in getCompileCommands()
|
D | CompilationDatabase.cpp | 306 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in FixedCompilationDatabase
|
D | JSONCompilationDatabase.cpp | 173 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const { in getCompileCommands() function in clang::tooling::JSONCompilationDatabase
|
D | Tooling.cpp | 391 Compilations.getCompileCommands(File); in run()
|
/external/clang/unittests/Tooling/ |
D | CompilationDatabaseTest.cpp | 149 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/llvm-project/clang/tools/libclang/ |
D | CXCompilationDatabase.cpp | 50 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName)); in clang_CompilationDatabase_getCompileCommands()
|
/external/clang/tools/libclang/ |
D | CXCompilationDatabase.cpp | 52 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName)); in clang_CompilationDatabase_getCompileCommands()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | GlobalCompilationDatabase.cpp | 190 auto Candidates = Res->CDB->getCompileCommands(File); in getCompileCommand()
|
/external/llvm-project/clang/tools/clang-scan-deps/ |
D | ClangScanDeps.cpp | 183 getCompileCommands(StringRef FilePath) const override { in getCompileCommands() function in SingleCommandCompilationDatabase
|