Lines Matching defs:QualName
89 // QualName (very useful in unit tests to reduce verbosity). This can't use an
92 // "GlobalNamespace" as the name, but an empty QualName).
95 : USR(USR), Name(Name), QualName(Name), RefType(IT) {}
96 Reference(SymbolID USR, StringRef Name, InfoType IT, StringRef QualName,
98 : USR(USR), Name(Name), QualName(QualName), RefType(IT), Path(Path) {}
101 return std::tie(USR, Name, QualName, RefType) ==
102 std::tie(Other.USR, Other.Name, QualName, Other.RefType);
119 // QualName.
125 SmallString<16> QualName;