Lines Matching refs:Iter1
401 class Iter1 { class
403 Iter1(float f = 0.0f, double d = 0.0) {} in Iter1() function in Iter1
404 Iter1(const Iter1 &) {} in Iter1() function in Iter1
405 Iter1 operator++() { return *this; } in operator ++()
406 Iter1 operator--() { return *this; } in operator --()
407 bool operator<(Iter1 a) { return true; } in operator <()
408 bool operator>=(Iter1 a) { return false; } in operator >=()
554 Iter1 begin1, end1; in test_with_random_access_iterator()
559 for (Iter1 I = begin1; I < end1; ++I) in test_with_random_access_iterator()
565 for (Iter1 I = begin1; I >= end1; ++I) in test_with_random_access_iterator()
573 for (Iter1 I; I < end1; ++I) { in test_with_random_access_iterator()