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

References

tools/clang/tools/extra/clangd/CodeComplete.cpp
 1055   ParseInput.CompileCommand = Input.Command;
tools/clang/tools/extra/clangd/Compiler.cpp
   47   for (const auto &S : Inputs.CompileCommand.CommandLine)
   50   if (Inputs.FS->setCurrentWorkingDirectory(Inputs.CompileCommand.Directory)) {
tools/clang/tools/extra/clangd/ParsedAST.cpp
  515   if (VFS->setCurrentWorkingDirectory(Inputs.CompileCommand.Directory)) {
tools/clang/tools/extra/clangd/Preamble.cpp
  102       compileCommandsAreEqual(Inputs.CompileCommand, OldCompileCommand) &&
  127   if (Inputs.FS->setCurrentWorkingDirectory(Inputs.CompileCommand.Directory)) {
tools/clang/tools/extra/clangd/TUScheduler.cpp
  355   Inputs->CompileCommand = CDB.getFallbackCommand(FileName);
  386       Inputs.CompileCommand = *Cmd;
  389       Inputs.CompileCommand = CDB.getFallbackCommand(FileName);
  393         std::tie(PrevInputs->CompileCommand, PrevInputs->Contents) ==
  394         std::tie(Inputs.CompileCommand, Inputs.Contents);
  396     tooling::CompileCommand OldCommand = PrevInputs->CompileCommand;
  405         Inputs.CompileCommand.Heuristic,
  406         Inputs.CompileCommand.Directory,
  407         llvm::join(Inputs.CompileCommand.CommandLine, " "));
  601   return FileInputs->CompileCommand;
tools/clang/tools/extra/clangd/index/Background.cpp
  365   Inputs.CompileCommand = std::move(Cmd);
  419   Index.Cmd = Inputs.CompileCommand;
  424       Inputs.CompileCommand.Filename, Index.Symbols->size(),
tools/clang/tools/extra/clangd/unittests/FileIndexTests.cpp
  263   PI.CompileCommand.Directory = testRoot();
  264   PI.CompileCommand.Filename = FooCpp;
  265   PI.CompileCommand.CommandLine = {"clang", "-xc++", FooCpp};
tools/clang/tools/extra/clangd/unittests/HeadersTests.cpp
   47     PI.CompileCommand = *Cmd;
tools/clang/tools/extra/clangd/unittests/ParsedASTTests.cpp
  222   Inputs.CompileCommand.CommandLine = {"clang", "-fsome-unknown-flag",
  228   Inputs.CompileCommand.CommandLine = {
tools/clang/tools/extra/clangd/unittests/TUSchedulerTests.cpp
   49     Inputs.CompileCommand = *CDB.getCompileCommand(File);
tools/clang/tools/extra/clangd/unittests/TestTU.cpp
   53   Inputs.CompileCommand.Filename = FullFilename;
   54   Inputs.CompileCommand.CommandLine = {Cmd.begin(), Cmd.end()};
   55   Inputs.CompileCommand.Directory = testRoot();
   70                     /*OldCompileCommand=*/Inputs.CompileCommand, Inputs,