Searched refs:DupKey (Results 1 – 1 of 1) sorted by relevance
14154 struct DupKey { struct14157 DupKey(int64_t val, bool isTombstoneOrEmptyKey) in DupKey() function14161 static DupKey GetDupKey(const llvm::APSInt& Val) { in GetDupKey()14162 return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(), in GetDupKey()14167 static DupKey getEmptyKey() { return DupKey(0, true); } in getEmptyKey()14168 static DupKey getTombstoneKey() { return DupKey(1, true); } in getTombstoneKey()14169 static unsigned getHashValue(const DupKey Key) { in getHashValue()14172 static bool isEqual(const DupKey& LHS, const DupKey& RHS) { in isEqual()14198 typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey> in CheckForDuplicateEnumValues()14218 DupKey Key = GetDupKey(ECD->getInitVal()); in CheckForDuplicateEnumValues()[all …]