Lines Matching refs:Key
159 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
161 Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>>;
163 template<class Key, AllocatorTag kTag, class Compare = std::less<Key>>
164 using AllocationTrackingSet = std::set<Key, Compare, TrackingAllocator<Key, kTag>>;
166 template<class Key,
169 class Hash = std::hash<Key>,
170 class Pred = std::equal_to<Key>>
172 Key, T, Hash, Pred, TrackingAllocator<std::pair<const Key, T>, kTag>>;
174 template<class Key,
178 class Hash = std::hash<Key>,
179 class Pred = std::equal_to<Key>>
181 Key, T, EmptyFn, Hash, Pred, TrackingAllocator<std::pair<Key, T>, kTag>>;