Home | History | Annotate | Download | only in containers

Lines Matching refs:Pred

136          class Pred = std::equal_to<Key>,
138 using hash_map = std::unordered_map<Key, T, Hash, Pred, Alloc>;
142 class Pred = std::equal_to<Key>,
144 using hash_multimap = std::unordered_multimap<Key, T, Hash, Pred, Alloc>;
148 class Pred = std::equal_to<Key>,
150 using hash_multiset = std::unordered_multiset<Key, Hash, Pred, Alloc>;
154 class Pred = std::equal_to<Key>,
156 using hash_set = std::unordered_set<Key, Hash, Pred, Alloc>;
164 class Pred = std::equal_to<Key>,
166 using hash_map = BASE_HASH_IMPL_NAMESPACE::hash_map<Key, T, Hash, Pred, Alloc>;
170 class Pred = std::equal_to<Key>,
173 BASE_HASH_IMPL_NAMESPACE::hash_multimap<Key, T, Hash, Pred, Alloc>;
177 class Pred = std::equal_to<Key>,
180 BASE_HASH_IMPL_NAMESPACE::hash_multiset<Key, Hash, Pred, Alloc>;
184 class Pred = std::equal_to<Key>,
186 using hash_set = BASE_HASH_IMPL_NAMESPACE::hash_set<Key, Hash, Pred, Alloc>;