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

Declarations

tools/clang/tools/extra/clangd/index/SymbolID.h
   51   static llvm::Expected<SymbolID> fromStr(llvm::StringRef);

References

tools/clang/tools/extra/clangd/XRefs.cpp
 1262     if (Expected<SymbolID> ID = SymbolID::fromStr(*Item.data)) {
tools/clang/tools/extra/clangd/index/YAMLSerialization.cpp
   78     auto ID = SymbolID::fromStr(HexString);
tools/clang/tools/extra/clangd/index/dex/dexp/Dexp.cpp
  177       auto SID = SymbolID::fromStr(ID);
  224       auto SID = SymbolID::fromStr(ID);
tools/clang/tools/extra/clangd/unittests/SerializationTests.cpp
   96 MATCHER_P(ID, I, "") { return arg.ID == cantFail(SymbolID::fromStr(I)); }
  118       cantFail(SymbolID::fromStr("057557CEBF6E6B2D")));
  120       cantFail(SymbolID::fromStr("057557CEBF6E6B2E")));
  146       UnorderedElementsAre(Pair(cantFail(SymbolID::fromStr("057557CEBF6E6B2D")),
  152   SymbolID Base = cantFail(SymbolID::fromStr("6481EE7AF2841756"));
  153   SymbolID Derived = cantFail(SymbolID::fromStr("6512AEC512EA3A2D"));