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

1 2

  /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')
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/
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;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 getCompileCommands(StringRef FilePath) const override;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 getCompileCommands(StringRef FilePath) const override;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 getCompileCommands(StringRef FilePath) const override;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 getCompileCommands(StringRef FilePath) const override;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 getCompileCommands(StringRef FilePath) const override;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 getCompileCommands(StringRef FilePath) const override;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 getCompileCommands(StringRef FilePath) const override;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 123 virtual std::vector<CompileCommand> getCompileCommands(
204 getCompileCommands(StringRef FilePath) const override;
219 /// getCompileCommands after adding the positional argument.
JSONCompilationDatabase.h 82 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 266 // necessary so that getCompileCommands() can construct a command line for
306 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const {
JSONCompilationDatabase.cpp 173 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
Tooling.cpp 383 // Currently implementations of CompilationDatabase::getCompileCommands can
391 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));

Completed in 340 milliseconds

1 2