Lines Matching refs:Alloc
137 class Alloc = std::allocator<std::pair<const Key, T>>>
138 using hash_map = std::unordered_map<Key, T, Hash, Pred, Alloc>;
143 class Alloc = std::allocator<std::pair<const Key, T>>>
144 using hash_multimap = std::unordered_multimap<Key, T, Hash, Pred, Alloc>;
149 class Alloc = std::allocator<Key>>
150 using hash_multiset = std::unordered_multiset<Key, Hash, Pred, Alloc>;
155 class Alloc = std::allocator<Key>>
156 using hash_set = std::unordered_set<Key, Hash, Pred, Alloc>;
165 class Alloc = std::allocator<std::pair<const Key, T>>>
166 using hash_map = BASE_HASH_IMPL_NAMESPACE::hash_map<Key, T, Hash, Pred, Alloc>;
171 class Alloc = std::allocator<std::pair<const Key, T>>>
173 BASE_HASH_IMPL_NAMESPACE::hash_multimap<Key, T, Hash, Pred, Alloc>;
178 class Alloc = std::allocator<Key>>
180 BASE_HASH_IMPL_NAMESPACE::hash_multiset<Key, Hash, Pred, Alloc>;
185 class Alloc = std::allocator<Key>>
186 using hash_set = BASE_HASH_IMPL_NAMESPACE::hash_set<Key, Hash, Pred, Alloc>;