Lines Matching full:begin
51 std::random_shuffle(TestPtrs.begin(), TestPtrs.end(), test_shuffle_rng_p);
75 EXPECT_EQ(Values[i], *std::next(V.begin(), i));
77 EXPECT_EQ(V.end(), std::next(V.begin(), Values.size()));
295 this->V.erase(this->V.begin());
300 this->V.erase(this->V.begin());
301 this->TestPtrs.erase(this->TestPtrs.begin());
303 this->V.erase(std::next(this->V.begin(), 1));
304 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 1));
306 this->V.erase(std::next(this->V.begin(), 2));
307 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 2));
309 this->V.erase(std::next(this->V.begin(), 5));
310 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 5));
312 this->V.erase(std::next(this->V.begin(), 13));
313 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 13));
316 typename TypeParam::iterator I = this->V.begin();
326 this->V.erase(this->V.begin(), this->V.begin());
330 this->V.erase(this->V.begin(), this->V.end());
335 this->V.erase(this->V.begin(), std::next(this->V.begin(), 1));
336 this->TestPtrs.erase(this->TestPtrs.begin(),
337 std::next(this->TestPtrs.begin(), 1));
339 this->V.erase(std::next(this->V.begin(), 1), std::next(this->V.begin(), 2));
340 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 1),
341 std::next(this->TestPtrs.begin(), 2));
343 this->V.erase(std::next(this->V.begin(), 2), std::next(this->V.begin(), 4));
344 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 2),
345 std::next(this->TestPtrs.begin(), 4));
347 this->V.erase(std::next(this->V.begin(), 5), std::next(this->V.begin(), 10));
348 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 5),
349 std::next(this->TestPtrs.begin(), 10));
351 this->V.erase(std::next(this->V.begin(), 13), std::next(this->V.begin(), 26));
352 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 13),
353 std::next(this->TestPtrs.begin(), 26));
355 this->V.erase(std::next(this->V.begin(), 7), this->V.end());
357 this->V.erase(this->V.begin(), this->V.end());
369 this->V.insert(this->V.begin(), this->TestPtrs[42]);
370 this->TestPtrs.insert(this->TestPtrs.begin(), this->TestPtrs[42]);
372 this->V.insert(std::next(this->V.begin(), 3), this->TestPtrs[43]);
373 this->TestPtrs.insert(std::next(this->TestPtrs.begin(), 3),
379 this->V.insert(this->V.end(), this->TestPtrs.begin(), this->TestPtrs.begin());
381 this->V.insert(this->V.begin(), this->TestPtrs.begin(),
382 this->TestPtrs.begin());
386 this->V.insert(this->V.end(), this->TestPtrs.begin(),
387 std::next(this->TestPtrs.begin()));
390 this->V.insert(this->V.end(), this->TestPtrs.begin(),
391 std::next(this->TestPtrs.begin(), 2));
394 this->V.insert(this->V.end(), this->TestPtrs.begin(),
395 std::next(this->TestPtrs.begin(), 42));
399 std::next(this->TestPtrs.begin(), 5),
400 std::next(this->TestPtrs.begin(), 13));
401 this->V.insert(this->V.begin(),
402 std::next(this->TestPtrs.begin(), 0),
403 std::next(this->TestPtrs.begin(), 3));
404 this->V.insert(std::next(this->V.begin(), 2),
405 std::next(this->TestPtrs.begin(), 2),
406 std::next(this->TestPtrs.begin(), 4));
407 this->V.erase(std::next(this->V.begin(), 4));
408 this->V.insert(std::next(this->V.begin(), 4),
409 std::next(this->TestPtrs.begin(), 4),
410 std::next(this->TestPtrs.begin(), 5));