Home | History | Annotate | Download | only in base

Lines Matching refs:kTag

106 template<class T, AllocatorTag kTag>
120 const TrackingAllocatorImpl<U, kTag>& alloc ATTRIBUTE_UNUSED) noexcept {}
124 static_assert(kTag < kAllocatorTagCount, "kTag must be less than kAllocatorTagCount");
131 typedef TrackingAllocatorImpl<U, kTag> other;
148 return kTag;
152 template<class T, AllocatorTag kTag>
156 TrackingAllocatorImpl<T, kTag>,
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>>;
168 AllocatorTag kTag,
172 Key, T, Hash, Pred, TrackingAllocator<std::pair<const Key, T>, kTag>>;
177 AllocatorTag kTag,
181 Key, T, EmptyFn, Hash, Pred, TrackingAllocator<std::pair<Key, T>, kTag>>;