Lines Matching defs:alloc
82 Alloc alloc;
83 Container<K, V, std::less<K>, Alloc> c(std::from_range, in, alloc);
85 assert(c.get_allocator() == alloc);
93 Alloc alloc;
94 Container<K, V, Comp, Alloc> c(std::from_range, in, comp, alloc);
97 assert(c.get_allocator() == alloc);
162 ThrowingAllocator<ValueType> alloc;
165 Container<K, V, test_less<K>, ThrowingAllocator<ValueType>> c(std::from_range, in, alloc);
224 Alloc alloc;
225 Container<T, std::less<T>, Alloc> c(std::from_range, in, alloc);
227 assert(c.get_allocator() == alloc);
235 Alloc alloc;
236 Container<T, Comp, Alloc> c(std::from_range, in, comp, alloc);
239 assert(c.get_allocator() == alloc);
294 ThrowingAllocator<T> alloc;
297 Container<T, test_less<T>, ThrowingAllocator<T>> c(std::from_range, in, alloc);