Lines Matching refs:begin
121 Iterator begin, Iterator end ) in construct_container()
124 new (ptr) UnorderedType(begin, end); in construct_container()
130 … Iterator begin, Iterator end, const Allocator& alloc ) in construct_container()
133 new (ptr) UnorderedType(begin, end, /*bucket_count = */4, alloc); in construct_container()
138 static bool equal( const UnorderedType& c, Iterator begin, Iterator end ) { in equal()
139 if (std::size_t(std::distance(begin, end)) != c.size()) { in equal()
143 for (Iterator it = begin; it != end; ++it) { in equal()
174 for (auto it = lst.begin(); it != lst.end();) { in CustomExamine()
211 c1.insert(lst.begin(), lst.end()); in TypeTester()
219 auto it = lst.begin(); in TypeTester()
224 it = lst.begin(); in TypeTester()
230 it = lst.begin(); in TypeTester()
246 c4.insert(lst.begin(), lst.end()); in TypeTester()
251 c4_alloc.insert(lst.begin(), lst.end()); in TypeTester()
256 c4_hash_alloc.insert(lst.begin(), lst.end()); in TypeTester()
260 Table c5(c1.begin(), c1.end()); in TypeTester()
264 Table c5_alloc(c1.begin(), c2.end(), initial_bucket_number, allocator); in TypeTester()
268 Table c5_hash_alloc(c1.begin(), c2.end(), initial_bucket_number, hasher, allocator); in TypeTester()
291 it = lst.begin(); in TypeTester()