Lines Matching refs:q1
1439 TQueue q1(v.begin(), v.end()); in TestDeductionGuides() local
1440 static_assert(std::is_same<decltype(q1), TQueue<ComplexType>>::value); in TestDeductionGuides()
1447 TQueue q3(q1); in TestDeductionGuides()
1448 static_assert(std::is_same<decltype(q3), decltype(q1)>::value); in TestDeductionGuides()
1455 TQueue q5(std::move(q1)); in TestDeductionGuides()
1456 static_assert(std::is_same<decltype(q5), decltype(q1)>::value); in TestDeductionGuides()
1694 CQ q1, q2, q3; in test_queue_helper() local
1698 q1 = q3; in test_queue_helper()
1702 CHECK(q1 != q4); in test_queue_helper()
1703 q1.swap(q4); in test_queue_helper()
1722 QueueType q1, q2; in TestMoveQueue() local
1728 q1.push(obj); in TestMoveQueue()
1738 q1 = std::move(q2); in TestMoveQueue()
1783 QueueType q1(alloc1), q2(alloc2); in TestMoveQueueUnequal() local
1789 q1.push(obj); in TestMoveQueueUnequal()
1797 q1 = std::move(q2); in TestMoveQueueUnequal()
1800 …REQUIRE_MESSAGE(std::all_of(q1.unsafe_begin(), q1.unsafe_end(), is_state_predicate<move_support_te… in TestMoveQueueUnequal()