Lines Matching refs:begin
108 void operator()( const Range &r ) const { do_test_range( r.begin(), r.end() ); } in operator ()()
112 …typename std::list<value_type>::const_iterator it2 = std::search( my_lst.begin(), my_lst.end(), it… in do_test_range()
114 … typename std::list<value_type>::difference_type dist = std::distance( my_lst.begin(), it2 ); in do_test_range()
207 std::for_each( lst.begin(), lst.end(), cv ); in Examine()
211 test_range<Table,iterator>( c, lst, marks ).do_test_range( c.begin(), c.end() ); in Examine()
212 CHECK(std::find( marks.begin(), marks.end(), false ) == marks.end()); in Examine()
214 test_range<const_table,const_iterator>( c, lst, marks ).do_test_range( c.begin(), c.end() ); in Examine()
215 CHECK(std::find( marks.begin(), marks.end(), false ) == marks.end()); in Examine()
219 CHECK(std::find( marks.begin(), marks.end(), false ) == marks.end()); in Examine()
229 typename std::list<value_type>::const_iterator begin5 = lst.begin(); in Examine()
231 c2.insert( lst.begin(), begin5 ); in Examine()
232 std::for_each( lst.begin(), begin5, check_value<default_construction_present, Table>( c2 ) ); in Examine()
237 std::for_each( lst.begin(), lst.end(), check_value<default_construction_present,Table>(c2) ); in Examine()
264 c1.insert( lst.begin(), lst.end() ); in TypeTester()
268 typename std::list<Value>::const_iterator it = lst.begin(); in TypeTester()
292 c6.insert( lst.begin(), lst.end() ); in TypeTester()
299 c8.insert( lst.begin(), lst.end() ); in TypeTester()
302 c9.insert( lst.begin(), lst.end() ); in TypeTester()
305 ch_map c10_1( c1.begin(), c1.end() ), c10_2(c1.cbegin(), c1.cend()); in TypeTester()
310 ch_map_debug_alloc c11( lst.begin(), lst.end(), allocator ); in TypeTester()
318 ch_map_debug_hash c12(c1.begin(), c1.end(), compare); in TypeTester()
321 ch_map_debug_hash c13(c1.begin(), c1.end(), compare, typename ch_map::allocator_type()); in TypeTester()
335 for ( std::list<int_int_t>::iterator it = arrIntInt.begin(); it != arrIntInt.end(); ++it ) in TestSpecificTypes()
341 for ( std::list<int_int_t>::iterator it = arrIntInt.begin(); it != arrIntInt.end(); ++it ) in TestSpecificTypes()
355 std::copy( arrShrShr.begin(), arrShrShr.end(), std::back_inserter(arrWkWk) ); in TestSpecificTypes()
474 …td::aligned_storage<sizeof(container_type)>::type& storage, iterator_type begin, iterator_type end… in construct_container()
476 new (ptr) container_type(begin, end); in construct_container()
481 …td::aligned_storage<sizeof(container_type)>::type& storage, iterator_type begin, iterator_type end… in construct_container()
483 new (ptr) container_type(begin, end, a); in construct_container()
515 static bool equal(hash_map_type const& c, iterator begin, iterator end){ in equal()
516 bool equal_sizes = ( static_cast<size_t>(std::distance(begin, end)) == c.size() ); in equal()
520 for (iterator it = begin; it != end; ++it ){ in equal()
617 for (std::size_t item = range.begin(); item != range.end(); ++item) { in test_with_minimalistic_mutex()
785 map_type map2(init_list.begin(), init_list.end()); in __anon3741356d0402()
792 map_type map3(init_list.begin(), init_list.end(), test_hash); in __anon3741356d0502()