Lines Matching refs:c1
215 container_type c1(allocator), c2(allocator); in test_scoped_allocator() local
219 c1.grow_by(100); in test_scoped_allocator()
220 c1.grow_by(10, data1); in test_scoped_allocator()
221 c1.grow_by(init_list.begin(), init_list.end()); in test_scoped_allocator()
222 c1.grow_by(init_list); in test_scoped_allocator()
224 c1.clear(); in test_scoped_allocator()
226 c1.grow_to_at_least(100); in test_scoped_allocator()
227 c1.grow_to_at_least(110, data1); in test_scoped_allocator()
229 c1.clear(); in test_scoped_allocator()
231 c1.push_back(data1); in test_scoped_allocator()
232 c1.push_back(data2); in test_scoped_allocator()
233 c1.push_back(std::move(data1)); in test_scoped_allocator()
234 c1.emplace_back(1); in test_scoped_allocator()
236 c1.clear(); in test_scoped_allocator()
238 c1.reserve(100); in test_scoped_allocator()
239 c1.resize(110); in test_scoped_allocator()
240 c1.resize(100); in test_scoped_allocator()
241 c1.resize(110, data1); in test_scoped_allocator()
242 c1.resize(100, data1); in test_scoped_allocator()
244 c1.shrink_to_fit(); in test_scoped_allocator()
246 c1.clear(); in test_scoped_allocator()
248 c1.grow_by(10, data1); in test_scoped_allocator()
251 c1 = c2; in test_scoped_allocator()
252 c2 = std::move(c1); in test_scoped_allocator()
265 void CompareVectors( const tbb::concurrent_vector<Type, Allocator> &c1, const tbb::concurrent_vecto… in CompareVectors() argument
266 REQUIRE( (!(c1 == c2) && c1 != c2) ); in CompareVectors()
267 REQUIRE( (c1 <= c2 && c1 < c2 && c2 >= c1 && c2 > c1) ); in CompareVectors()
329 tbb::concurrent_vector<Type> c1; in TypeTester() local
330 std::copy( vec.begin(), vec.end(), std::back_inserter(c1) ); in TypeTester()
331 Examine<default_construction_present>( c1, vec ); in TypeTester()
337 tbb::concurrent_vector<Type> c3(c1); in TypeTester()
350 tbb::concurrent_vector< Type, std::allocator<Type> > c10(c1.begin(), c1.end(), allocator); in TypeTester()