Home | History | Annotate | Download | only in ADT

Lines Matching refs:begin

49     std::random_shuffle(TestPtrs.begin(), TestPtrs.end(), test_shuffle_rng_p);
73 EXPECT_EQ(Values[i], *std::next(V.begin(), i));
75 EXPECT_EQ(V.end(), std::next(V.begin(), Values.size()));
293 this->V.erase(this->V.begin());
298 this->V.erase(this->V.begin());
299 this->TestPtrs.erase(this->TestPtrs.begin());
301 this->V.erase(std::next(this->V.begin(), 1));
302 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 1));
304 this->V.erase(std::next(this->V.begin(), 2));
305 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 2));
307 this->V.erase(std::next(this->V.begin(), 5));
308 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 5));
310 this->V.erase(std::next(this->V.begin(), 13));
311 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 13));
314 typename TypeParam::iterator I = this->V.begin();
324 this->V.erase(this->V.begin(), this->V.begin());
328 this->V.erase(this->V.begin(), this->V.end());
333 this->V.erase(this->V.begin(), std::next(this->V.begin(), 1));
334 this->TestPtrs.erase(this->TestPtrs.begin(),
335 std::next(this->TestPtrs.begin(), 1));
337 this->V.erase(std::next(this->V.begin(), 1), std::next(this->V.begin(), 2));
338 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 1),
339 std::next(this->TestPtrs.begin(), 2));
341 this->V.erase(std::next(this->V.begin(), 2), std::next(this->V.begin(), 4));
342 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 2),
343 std::next(this->TestPtrs.begin(), 4));
345 this->V.erase(std::next(this->V.begin(), 5), std::next(this->V.begin(), 10));
346 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 5),
347 std::next(this->TestPtrs.begin(), 10));
349 this->V.erase(std::next(this->V.begin(), 13), std::next(this->V.begin(), 26));
350 this->TestPtrs.erase(std::next(this->TestPtrs.begin(), 13),
351 std::next(this->TestPtrs.begin(), 26));
353 this->V.erase(std::next(this->V.begin(), 7), this->V.end());
355 this->V.erase(this->V.begin(), this->V.end());
367 this->V.insert(this->V.begin(), this->TestPtrs[42]);
368 this->TestPtrs.insert(this->TestPtrs.begin(), this->TestPtrs[42]);
370 this->V.insert(std::next(this->V.begin(), 3), this->TestPtrs[43]);
371 this->TestPtrs.insert(std::next(this->TestPtrs.begin(), 3),
377 this->V.insert(this->V.end(), this->TestPtrs.begin(), this->TestPtrs.begin());
379 this->V.insert(this->V.begin(), this->TestPtrs.begin(),
380 this->TestPtrs.begin());
384 this->V.insert(this->V.end(), this->TestPtrs.begin(),
385 std::next(this->TestPtrs.begin()));
388 this->V.insert(this->V.end(), this->TestPtrs.begin(),
389 std::next(this->TestPtrs.begin(), 2));
392 this->V.insert(this->V.end(), this->TestPtrs.begin(),
393 std::next(this->TestPtrs.begin(), 42));
397 std::next(this->TestPtrs.begin(), 5),
398 std::next(this->TestPtrs.begin(), 13));
399 this->V.insert(this->V.begin(),
400 std::next(this->TestPtrs.begin(), 0),
401 std::next(this->TestPtrs.begin(), 3));
402 this->V.insert(std::next(this->V.begin(), 2),
403 std::next(this->TestPtrs.begin(), 2),
404 std::next(this->TestPtrs.begin(), 4));
405 this->V.erase(std::next(this->V.begin(), 4));
406 this->V.insert(std::next(this->V.begin(), 4),
407 std::next(this->TestPtrs.begin(), 4),
408 std::next(this->TestPtrs.begin(), 5));