Lines Matching refs:it
143 for (Iterator it = begin; it != end; ++it) { in equal() local
144 if (!c.contains(Value<UnorderedType>::key(*it))) { in equal()
174 for (auto it = lst.begin(); it != lst.end();) { in CustomExamine() local
175 const size_type index = c.unsafe_bucket(Value<Table>::key(*it)); in CustomExamine()
176 auto prev_it = it++; in CustomExamine()
177 …REQUIRE(std::search(c.unsafe_begin(index), c.unsafe_end(index), prev_it, it, utils::IsEqual()) != … in CustomExamine()
219 auto it = lst.begin(); in TypeTester() local
220 Table c2({*it++, *it++, *it++}); in TypeTester()
221 c2.insert(it, lst.end()); in TypeTester()
224 it = lst.begin(); in TypeTester()
226 Table c2_alloc({*it++, *it++, *it++}, initial_bucket_number, allocator); in TypeTester()
227 c2_alloc.insert(it, lst.end()); in TypeTester()
230 it = lst.begin(); in TypeTester()
232 Table c2_hash_alloc({*it++, *it++, *it++}, initial_bucket_number, hasher, allocator); in TypeTester()
233 c2_hash_alloc.insert(it, lst.end()); in TypeTester()
291 it = lst.begin(); in TypeTester()
292 c8 = {*it++, *it++, *it++}; in TypeTester()
293 c8.insert(it, lst.end()); in TypeTester()