Lines Matching refs:GoodIter1
453 class GoodIter1 { class
455 GoodIter1() {} in GoodIter1() function in GoodIter1
456 GoodIter1(const GoodIter1 &) {} in GoodIter1() function in GoodIter1
457 GoodIter1 &operator++(int) { return *this; } in operator ++()
458 GoodIter1 &operator=(const GoodIter1 &that) { return *this; } in operator =()
459 GoodIter1 &operator+=(int x) { return *this; } in operator +=()
460 friend long operator-(const GoodIter1 &, const GoodIter1 &);
461 GoodIter1 &operator-(int) { return *this; } in operator -()
462 bool operator<(GoodIter1 a) { return true; } in operator <()
612 GoodIter1 I1, E1; in test_with_random_access_iterator()
616 for (GoodIter1 I = I1; I < E1; I++) // expected-note 2 {{'I' declared here}} in test_with_random_access_iterator()
622 for (GoodIter1 I = I1; I < E1; I++) in test_with_random_access_iterator()