Lines Matching refs:dqe
420 typename CQ::const_iterator dqe; in TestConstructors() local
455 dqe = dst_queue2.unsafe_end(); in TestConstructors()
456 auto res = std::mismatch(dqb, dqe, bar_array); in TestConstructors()
457 CHECK_FAST_MESSAGE(res.first == dqe, "unexpected element"); in TestConstructors()
479 dqe = dst_queue4.unsafe_end(); in TestConstructors()
481 auto res = std::mismatch(dqb, dqe, iter); in TestConstructors()
482 CHECK_FAST_MESSAGE(res.first == dqe, "unexpected element"); in TestConstructors()
490 dqe = dst_queue5.unsafe_end(); in TestConstructors()
492 REQUIRE_MESSAGE(std::equal(dqb, dqe, iter), "unexpected element"); in TestConstructors()
507 dqe = dst_queue5.unsafe_end(); in TestConstructors()
509 auto res = std::mismatch(dqb, dqe, iter); in TestConstructors()
510 REQUIRE_MESSAGE(res.first == dqe, "unexpected element"); in TestConstructors()