HomeSort by relevance Sort by last modified time
    Searched refs:getCompileCommands (Results 1 - 10 of 10) sorted by null

  /external/clang/bindings/python/tests/cindex/
test_cdb.py 27 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/
CompilationDatabase.h 119 virtual std::vector<CompileCommand> getCompileCommands(
200 getCompileCommands(StringRef FilePath) const override;
215 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 79 getCompileCommands(StringRef FilePath) const override;
  /external/clang/lib/Tooling/
CommonOptionsParser.cpp 69 getCompileCommands(StringRef FilePath) const override {
70 return adjustCommands(Compilations->getCompileCommands(FilePath));
CompilationDatabase.cpp 267 // necessary so that getCompileCommands() can construct a command line for
307 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const {
JSONCompilationDatabase.cpp 173 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
Tooling.cpp 369 // Currently implementations of CompilationDatabase::getCompileCommands can
377 Compilations.getCompileCommands(File);
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 149 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName);
453 Database.getCompileCommands(FileName);
508 Database->getCompileCommands("source");
527 Database->getCompileCommands("source");
544 Database->getCompileCommands("source");
563 Database->getCompileCommands("source");
  /external/clang/tools/libclang/
CXCompilationDatabase.cpp 52 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName));
  /external/clang/bindings/python/clang/
cindex.py     [all...]

Completed in 157 milliseconds