Lines Matching refs:Key
24 template <typename Key, typename Value>
28 Key key;
32 TemplateHashMapEntry(Key key, Value value, uint32_t hash)
44 template <typename Key, typename Value>
45 struct TemplateHashMapEntry<Key*, Value> {
48 Key* key;
52 TemplateHashMapEntry(Key* key, Value value, uint32_t hash)
61 template <typename Key>
62 struct TemplateHashMapEntry<Key, NoHashMapValue> {
64 Key key;
69 TemplateHashMapEntry(Key key, NoHashMapValue value, uint32_t hash)
81 template <typename Key>
82 struct TemplateHashMapEntry<Key*, NoHashMapValue> {
84 Key* key;
89 TemplateHashMapEntry(Key* key, NoHashMapValue value, uint32_t hash)