Lines Matching defs:Key
64 unsigned LookupBucketFor(StringRef Key) { in LookupBucketFor()
74 int FindKey(StringRef Key) const { return FindKey(Key, hash(Key)); } in FindKey()
233 iterator find(StringRef Key) { return find(Key, hash(Key)); } in find()
235 iterator find(StringRef Key, uint32_t FullHashValue) { in find()
242 const_iterator find(StringRef Key) const { return find(Key, hash(Key)); } in find()
244 const_iterator find(StringRef Key, uint32_t FullHashValue) const { in find()
253 ValueTy lookup(StringRef Key) const { in lookup()
273 bool contains(StringRef Key) const { return find(Key) != end(); } in contains()
276 size_type count(StringRef Key) const { return contains(Key) ? 1 : 0; } in count()
356 std::pair<iterator, bool> insert_or_assign(StringRef Key, V &&Val) { in insert_or_assign()
368 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&...Args) { in try_emplace()
373 std::pair<iterator, bool> try_emplace_with_hash(StringRef Key, in try_emplace_with_hash()
422 bool erase(StringRef Key) { in erase()