Lines Matching refs:Value
30 template <class Key, class Value>
31 size_t operator()(const std::pair<Key, Value>& pair) const { in operator()
38 template <class Key, class Value>
39 bool operator()(const std::pair<Key, Value>& a, const std::pair<Key, Value>& b) const { in operator()
42 template <class Key, class Value, class Element>
43 bool operator()(const std::pair<Key, Value>& a, const Element& element) const { in operator()
51 template <typename Key, typename Value>
54 void MakeEmpty(std::pair<Key, Value>& item) const { in MakeEmpty()
55 item = std::pair<Key, Value>(); in MakeEmpty()
57 bool IsEmpty(const std::pair<Key, Value>& item) const { in IsEmpty()
63 class Value,
64 class EmptyFn = DefaultMapEmptyFn<Key, Value>,
67 class Alloc = std::allocator<std::pair<Key, Value>>>
68 class HashMap : public HashSet<std::pair<Key, Value>,
74 using Base = HashSet<std::pair<Key, Value>,