reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/Tooling/CompilationDatabase.h
   68     return LHS.Directory == RHS.Directory && LHS.Filename == RHS.Filename &&
   68     return LHS.Directory == RHS.Directory && LHS.Filename == RHS.Filename &&
tools/clang/lib/Tooling/CommonOptionsParser.cpp
   79       Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename);
tools/clang/lib/Tooling/CompilationDatabase.cpp
  391   Result[0].Filename = FilePath;
tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
  134       : Cmd(std::move(C)), Type(guessType(Cmd.Filename)),
  205     Result.Filename = Filename;
  233     Result.Heuristic = "inferred from " + Cmd.Filename;
tools/clang/lib/Tooling/Tooling.cpp
  530         CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename);
tools/clang/tools/clang-scan-deps/ClangScanDeps.cpp
  142     Inputs.emplace_back(Command.Filename, Command.Directory);
tools/clang/tools/extra/clangd/GlobalCompilationDatabase.cpp
   42   Cmd.CommandLine = ArgsAdjuster(Cmd.CommandLine, Cmd.Filename);
tools/clang/tools/extra/clangd/Preamble.cpp
   23   return LHS.Directory == RHS.Directory && LHS.Filename == RHS.Filename &&
   23   return LHS.Directory == RHS.Directory && LHS.Filename == RHS.Filename &&
tools/clang/tools/extra/clangd/index/Background.cpp
  114   if (llvm::sys::path::is_absolute(Cmd.Filename)) {
  115     AbsolutePath = Cmd.Filename;
  118     llvm::sys::path::append(AbsolutePath, Cmd.Filename);
  198     const std::string FileName = Cmd.Filename;
  203   T.Tag = filenameWithoutExtension(Cmd.Filename);
  345   SPAN_ATTACH(Tracer, "file", Cmd.Filename);
  361   vlog("Indexing {0} (digest:={1})", Cmd.Filename, llvm::toHex(Hash));
  424       Inputs.CompileCommand.Filename, Index.Symbols->size(),
tools/clang/tools/extra/clangd/unittests/BackgroundIndexTests.cpp
   99   Cmd.Filename = testPath("root/A.cc");
  139   Cmd.Filename = testPath("root/A.cc");
  152   Cmd.Filename = testPath("root/B.cc");
  153   Cmd.CommandLine = {"clang++", Cmd.Filename};
  196   Cmd.Filename = testPath("root/A.cc");
  265   Cmd.Filename = testPath("root/A.cc");
  314   Cmd.Filename = testPath("root/A.cc");
  388   Cmd.Filename = testPath("root/A.cc");
  449   Cmd.Filename = "../A.cc";
  455   Cmd.Filename = "./B.cc";
  487   Cmd.Filename = "../A.cc";
  543   Cmd.Filename = "../A.cc";
tools/clang/tools/extra/clangd/unittests/FileIndexTests.cpp
  264   PI.CompileCommand.Filename = FooCpp;
tools/clang/tools/extra/clangd/unittests/GlobalCompilationDatabaseTests.cpp
  159   Cmd.CommandLine.push_back(Cmd.Filename);
tools/clang/tools/extra/clangd/unittests/SerializationTests.cpp
  251   Cmd.Filename = "ignored";
  268     EXPECT_NE(SerializedCmd.Filename, Cmd.Filename);
  268     EXPECT_NE(SerializedCmd.Filename, Cmd.Filename);
tools/clang/tools/extra/clangd/unittests/TestTU.cpp
   53   Inputs.CompileCommand.Filename = FullFilename;
tools/clang/tools/libclang/CXCompilationDatabase.cpp
  119   return cxstring::createRef(cmd->Filename.c_str());
tools/clang/unittests/Tooling/CompilationDatabaseTest.cpp
  140   EXPECT_EQ(FileName1, Commands[0].Filename) << ErrorMessage;
  145   EXPECT_EQ(FileName2, Commands[1].Filename) << ErrorMessage;
  165   EXPECT_EQ(FileName2, Commands[0].Filename) << ErrorMessage;
  169   EXPECT_EQ(FileName1, Commands[1].Filename) << ErrorMessage;
  511   EXPECT_EQ(FileName, Result[0].Filename);
  822   CCTest.Filename = "bonjour.c";