HomeSort by: relevance | last modified time | path
    Searched refs:getCompileCommands (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/
GuessTargetAndModeCompilationDatabase.cpp 33 getCompileCommands(StringRef FilePath) const override {
34 return addTargetAndMode(Base->getCompileCommands(FilePath));
ExpandResponseFilesCompilationDatabase.cpp 41 getCompileCommands(StringRef FilePath) const override {
42 return expand(Base->getCompileCommands(FilePath));
CommonOptionsParser.cpp 60 std::vector<CompileCommand> ArgumentsAdjustingCompilations::getCompileCommands(
62 return adjustCommands(Compilations->getCompileCommands(FilePath));
InterpolatingCompilationDatabase.cpp 519 getCompileCommands(StringRef Filename) const override {
520 auto Known = Inner->getCompileCommands(Filename);
528 Inner->getCompileCommands(Index.chooseProxy(Filename, foldType(Lang)));
CompilationDatabase.cpp 135 auto C = getCompileCommands(File);
307 // unused for compilation. This is necessary so that getCompileCommands() can
382 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const {
JSONCompilationDatabase.cpp 229 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
Tooling.cpp 495 // Currently implementations of CompilationDatabase::getCompileCommands can
503 Compilations.getCompileCommands(File);
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
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')
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
CompilationDatabase.h 129 virtual std::vector<CompileCommand> getCompileCommands(
146 /// getCompileCommands(). Subclasses may override this for efficiency.
208 getCompileCommands(StringRef FilePath) const override;
212 /// getCompileCommands after adding the positional argument.
223 /// but getCompileCommands() will infer commands for unknown files.
CommonOptionsParser.h 127 getCompileCommands(StringRef FilePath) const override;
JSONCompilationDatabase.h 84 getCompileCommands(StringRef FilePath) const override;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXCompilationDatabase.cpp 50 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName));
  /src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
ClangScanDeps.cpp 210 getCompileCommands(StringRef FilePath) const override {
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 3256 def getCompileCommands(self, filename):

Completed in 30 milliseconds