Home | History | Annotate | Download | only in wtf

Lines Matching refs:KeyType

292         typedef Key KeyType;
319 pair<iterator, bool> add(const ValueType& value) { return add<KeyType, ValueType, IdentityTranslatorType>(Extractor::extract(value), value); }
327 iterator find(const KeyType& key) { return find<KeyType, IdentityTranslatorType>(key); }
328 const_iterator find(const KeyType& key) const { return find<KeyType, IdentityTranslatorType>(key); }
329 bool contains(const KeyType& key) const { return contains<KeyType, IdentityTranslatorType>(key); }
335 void remove(const KeyType&);
701 KeyType enteredKey = Extractor::extract(*entry);
746 KeyType enteredKey = Extractor::extract(*entry);
869 inline void HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::remove(const KeyType& key)