Lines Matching refs:begin

46         std::sort( array.begin(), array.end() );  in TestSort()
69 …td::aligned_storage<sizeof(container_type)>::type& storage, iterator_type begin, iterator_type end… in construct_container()
71 new (ptr) container_type(begin, end); in construct_container()
76 …td::aligned_storage<sizeof(container_type)>::type& storage, iterator_type begin, iterator_type end… in construct_container()
78 new (ptr) container_type(begin, end, a); in construct_container()
99 …qual(tbb::concurrent_vector<element_type, allocator_type > const& c, iterator begin, iterator end){ in equal()
100 bool equal_sizes = (size_t)std::distance(begin, end) == c.size(); in equal()
101 return equal_sizes && std::equal(c.begin(), c.end(), begin); in equal()
112 …dst.grow_by(std::make_move_iterator(fixture.source.begin()), std::make_move_iterator(fixture.sourc… in TestSerialGrowByWithMoveIterators()
221 c1.grow_by(init_list.begin(), init_list.end()); in test_scoped_allocator()
290 std::copy( c.begin(), c.begin() + 5, std::back_inserter( c2 ) ); in Examine()
292 c.grow_by( c2.begin(), c2.end() ); in Examine()
317 std::copy( my_vec.begin(), my_vec.end(), c7.begin() ); in operator ()()
320 std::copy( c7.begin(), c7.end(), c8.begin() ); in operator ()()
330 std::copy( vec.begin(), vec.end(), std::back_inserter(c1) ); in TypeTester()
334 std::copy( vec.begin()+3, vec.end(), std::back_inserter(c2) ); in TypeTester()
341 std::copy( vec.begin(), vec.end(), std::back_inserter(c4) ); in TypeTester()
350 tbb::concurrent_vector< Type, std::allocator<Type> > c10(c1.begin(), c1.end(), allocator); in TypeTester()
352 tbb::concurrent_vector<Type> c11(vec.begin(), vec.end()); in TypeTester()
377 std::copy( shrPtrArr.begin(), shrPtrArr.end(), std::back_inserter(wkPtrArr) ); in TestTypes()
394 …w_by( init_range, init_range + (utils::array_length( init_range )) ) == v.begin()), "grow_by(I,I) … in TestSerialGrowByRange()
395 …REQUIRE_MESSAGE( std::equal( v.begin(), v.end(), init_range ), "grow_by(I,I) did not properly copi… in TestSerialGrowByRange()
526 for (auto it = range.begin(); it != range.end(); ++it) { in reduce_vector()
648 vector_type vec2(list.begin(), list.end()); in __anon5f703c9f0802()