Lines Matching refs:Allocator
84 template <typename T, typename Allocator>
85 using container_type = tbb::concurrent_vector<T, Allocator>;
190 template <typename Type, typename Allocator>
192 tbb::concurrent_vector<Type, Allocator> &my_c;
194 test_grow_by_and_resize( tbb::concurrent_vector<Type, Allocator> &c ) : my_c(c) {} in test_grow_by_and_resize()
196 const typename tbb::concurrent_vector<Type, Allocator>::size_type sz = my_c.size(); in operator ()()
264 template <typename Type, typename Allocator>
265 …reVectors( const tbb::concurrent_vector<Type, Allocator> &c1, const tbb::concurrent_vector<Type, A… in CompareVectors()
270 template <typename Type, typename Allocator>
271 …:concurrent_vector<std::weak_ptr<Type>, Allocator> &, const tbb::concurrent_vector<std::weak_ptr<T… in CompareVectors() argument
275 template <bool default_construction_present, typename Type, typename Allocator>
276 void Examine( tbb::concurrent_vector<Type, Allocator> c, const std::vector<Type> &vec ) { in Examine()
277 using vector_t = tbb::concurrent_vector<Type, Allocator>; in Examine()
285 …ault_construction_test<default_construction_present>()(test_grow_by_and_resize<Type,Allocator>(c)); in Examine()
305 Allocator a = c.get_allocator(); in Examine()