Lines Matching refs:Iter1
323 class Iter1 { class
325 Iter1(float f=0.0f, double d=0.0) { } in Iter1() function in Iter1
326 Iter1(const Iter1 &) { } in Iter1() function in Iter1
327 Iter1 operator ++() { return *this; } in operator ++()
328 Iter1 operator --() { return *this; } in operator --()
329 bool operator <(Iter1 a) { return true; } in operator <()
330 bool operator >=(Iter1 a) { return false; } in operator >=()
446 Iter1 begin1, end1; in test_with_random_access_iterator()
450 for (Iter1 I = begin1; I < end1; ++I) in test_with_random_access_iterator()
455 for (Iter1 I = begin1; I >= end1; ++I) in test_with_random_access_iterator()
463 for (Iter1 I; I < end1; ++I) { in test_with_random_access_iterator()