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

References

tools/clang/tools/extra/clangd/index/Merge.cpp
   80     const Symbol *Sym = B.find(S.ID);
   88     if (const Symbol *Sym = B.find(ID))
tools/clang/tools/extra/clangd/index/SymbolCollector.cpp
  327   const Symbol *BasicSymbol = Symbols.find(*ID);
  385   if (Symbols.find(*ID) != nullptr)
  460     if (const auto *S = Symbols.find(ID)) {
  493     if (const Symbol *S = Symbols.find(Entry.first)) {
  602     return Symbols.find(S.ID);
  622   return Symbols.find(S.ID);
tools/clang/tools/extra/clangd/indexer/IndexerMain.cpp
   51             if (const auto *Existing = Symbols.find(Sym.ID))
tools/clang/tools/extra/clangd/unittests/IndexTests.cpp
   68   EXPECT_EQ(nullptr, B.find(SymbolID("W")));
   70     EXPECT_THAT(B.find(SymbolID(Sym)), Pointee(Named(Sym)));