Lines Matching refs:v
389 std::vector<int> v; in test_ctors_dtor_accessors() local
430 v.emplace_back(i); in test_ctors_dtor_accessors()
433 cpq_type cpq7(v.begin(), v.end()); in test_ctors_dtor_accessors()
436 REQUIRE_MESSAGE(v == toVector(cpq7), "Failed equality test for half-open range ctor"); in test_ctors_dtor_accessors()
439 cpq_with_compare_type cpq8(v.begin(), v.end(), l); in test_ctors_dtor_accessors()
442 REQUIRE_MESSAGE(v == toVector(cpq8), "Failed equality test for half-open range+compare ctor"); in test_ctors_dtor_accessors()
454 std::vector<int> v; in test_assignment_clear_swap() local
458 v.emplace_back(i); in test_assignment_clear_swap()
460 cpq_type q(v.begin(), v.end()); in test_assignment_clear_swap()
467 REQUIRE_MESSAGE(v == toVector(qo), "Failed assignment equality test"); in test_assignment_clear_swap()
473 assigned_q.assign(v.begin(), v.end()); in test_assignment_clear_swap()
476 REQUIRE_MESSAGE(v == toVector(assigned_q), "Failed assign equality test"); in test_assignment_clear_swap()
561 std::vector<ComplexType> v; in TestDeductionGuides() local
565 TQueue qv(v.begin(), v.end()); in TestDeductionGuides()
569 TQueue qva(v.begin(), v.end(), std::allocator<ComplexType>()); in TestDeductionGuides()
574 TQueue qvc(v.begin(), v.end(), LessA<ComplexType>(true)); in TestDeductionGuides()
578 TQueue qvca(v.begin(), v.end(), LessA<ComplexType>(true), std::allocator<ComplexType>()); in TestDeductionGuides()