Home | History | Annotate | Download | only in mismatch

Lines Matching defs:II

37     typedef input_iterator<int*>         II;
56 auto p5 = std::mismatch(II(std::begin(ib)), II(std::end(ib)), II(std::begin(ic)), eq);
57 if (p5.first != II(ib+2) || p5.second != II(ic+2))
79 typedef input_iterator<const int*> II;
83 assert(std::mismatch(II(ia), II(ia + sa), II(ib), EQ())
84 == (std::pair<II, II>(II(ia+3), II(ib+3))));
95 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), EQ())
96 == (std::pair<II, II>(II(ia+3), II(ib+3))));
100 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), std::ref(bcp))
101 == (std::pair<II, II>(II(ia+3), II(ib+3))));