Lines Matching refs:cq
1392 CQ cq; in TestEmplaceInQueue() local
1395 emplacer<emplace_op>::emplace( cq, 5 ); in TestEmplaceInQueue()
1396 CHECK(cq.size() == 1); in TestEmplaceInQueue()
1398 bool result = cq.try_pop( popped ); in TestEmplaceInQueue()
1404 CHECK(cq.empty()); in TestEmplaceInQueue()
1408 emplacer<emplace_op>::emplace( cq, std::string(test_str) ); in TestEmplaceInQueue()
1409 bool result = cq.try_pop( popped ); in TestEmplaceInQueue()
1415 CHECK(cq.empty()); in TestEmplaceInQueue()
1419 emplacer<emplace_op>::emplace( cq, 5, std::string(test_str) ); in TestEmplaceInQueue()
1420 bool result = cq.try_pop( popped ); in TestEmplaceInQueue()
1485 const QueueType& cq = q; in TestQueueIteratorComparisons() local
1486 TestQueueIteratorComparisonsBasic<typename QueueType::const_iterator>(cq); in TestQueueIteratorComparisons()