Searched refs:SymbolsMapKey (Results 1 – 2 of 2) sorted by relevance
25 struct SymbolsMapKey { struct29 SymbolsMapKey(MachO::EncodeKind Kind, StringRef Name) in SymbolsMapKey() argument32 template <> struct DenseMapInfo<SymbolsMapKey> {33 static inline SymbolsMapKey getEmptyKey() {34 return SymbolsMapKey(MachO::EncodeKind::GlobalSymbol, StringRef{});37 static inline SymbolsMapKey getTombstoneKey() {38 return SymbolsMapKey(MachO::EncodeKind::ObjectiveCInstanceVariable,42 static unsigned getHashValue(const SymbolsMapKey &Key) {46 static bool isEqual(const SymbolsMapKey &LHS, const SymbolsMapKey &RHS) {52 bool operator==(const DenseMapBase<DerivedT, SymbolsMapKey, MachO::Symbol *,[all …]
17 auto Result = Symbols.try_emplace(SymbolsMapKey{Kind, Name}, nullptr); in addGlobalImpl()