Lines Matching refs:qit
558 typename CQ::const_iterator qit = src_queue.unsafe_begin(); in TestConstructors() local
559 for (size_type i = 0; i < size; ++i, ++qit) { in TestConstructors()
560 locations[i] = &(*qit); in TestConstructors()
1314 typename CQ::const_iterator qit = src_queue.unsafe_begin(); in TestMoveConstructors() local
1315 for( std::size_t i = 0; i < size; ++i, ++qit ) in TestMoveConstructors()
1316 locations[i] = &(*qit); in TestMoveConstructors()
1326 qit = dst_queue.unsafe_begin(); in TestMoveConstructors()
1327 for( std::size_t i = 0; i < size; ++i, ++qit ) { in TestMoveConstructors()
1328 REQUIRE_MESSAGE(locations[i] != &(*qit), "an item should have been copied but was not" ); in TestMoveConstructors()
1329 locations[i] = &(*qit); in TestMoveConstructors()
1340 qit = dst_queue2.unsafe_begin(); in TestMoveConstructors()
1341 for( std::size_t i = 0; i < size; ++i, ++qit ) { in TestMoveConstructors()
1342 REQUIRE_MESSAGE(locations[i] == &(*qit), "an item should have been moved but was not" ); in TestMoveConstructors()