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

References

tools/clang/tools/extra/clang-include-fixer/FuzzySymbolIndex.cpp
   22       auto Tokens = tokenize(Symbol.Symbol.getName());
tools/clang/tools/extra/clang-include-fixer/InMemorySymbolIndex.cpp
   19     LookupTable[Symbol.Symbol.getName()].push_back(Symbol);
tools/clang/tools/extra/clang-include-fixer/SymbolIndexManager.cpp
   54     double NewScore = similarityScore(FileName, Symbol.Symbol.getFilePath()) *
   56     double &S = Score[Symbol.Symbol.getFilePath()];
   63               auto AS = Score[A.Symbol.getFilePath()];
   64               auto BS = Score[B.Symbol.getFilePath()];
   67               return A.Symbol.getFilePath() < B.Symbol.getFilePath();
   67               return A.Symbol.getFilePath() < B.Symbol.getFilePath();
  103       const SymbolInfo &Symbol = SymAndSig.Symbol;
  153     Res.push_back(std::move(SymAndSig.Symbol));
tools/clang/tools/extra/clang-include-fixer/YamlSymbolIndex.cpp
   53     if (Symbol.Symbol.getName() == Identifier)
tools/clang/tools/extra/clang-include-fixer/find-all-symbols/SymbolInfo.cpp
   30     io.mapRequired("Name", Symbol.Symbol.Name);
   31     io.mapRequired("Contexts", Symbol.Symbol.Contexts);
   32     io.mapRequired("FilePath", Symbol.Symbol.FilePath);
   33     io.mapRequired("Type", Symbol.Symbol.Type);
  115   return std::tie(Symbol, Signals) == std::tie(RHS.Symbol, RHS.Signals);
  115   return std::tie(Symbol, Signals) == std::tie(RHS.Symbol, RHS.Signals);
tools/clang/tools/extra/clang-include-fixer/find-all-symbols/tool/FindAllSymbolsMain.cpp
   86       Symbols[Symbol.Symbol] += Symbol.Signals;