Home | History | Annotate | Download | only in mismatch

Lines Matching defs:II

32     typedef input_iterator<int*>         II;
51 auto p5 = std::mismatch(II(std::begin(ib)), II(std::end(ib)), II(std::begin(ic)));
52 if (p5.first != II(ib+2) || p5.second != II(ic+2))
69 typedef input_iterator<const int*> II;
72 assert(std::mismatch(II(ia), II(ia + sa), II(ib))
73 == (std::pair<II, II>(II(ia+3), II(ib+3))));
79 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+sb))
80 == (std::pair<II, II>(II(ia+3), II(ib+3))));
86 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+2))
87 == (std::pair<II, II>(II(ia+2), II(ib+2))));