Lines Matching refs:getFoo
25 Foo getFoo();
123 …while (getFoo() == y); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
124 …while (getFoo() != y); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
125 …while (getFoo() >= y); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
126 …while (getFoo() <= y); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
127 …while (getFoo() > y); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
128 …while (getFoo() < y); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
130 …while (getFoo() == BarD); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
131 …while (getFoo() != BarD); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
132 …while (getFoo() >= BarD); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
133 …while (getFoo() <= BarD); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
134 …while (getFoo() > BarD); // expected-warning {{comparison of different enumeration types ('Foo' a… in test()
135 …while (getFoo() < BarD); // expected-warning {{comparison of different enumeration types ('Foo' a… in test()
137 …while (getFoo() == getBar()); // expected-warning {{comparison of different enumeration types ('F… in test()
138 …while (getFoo() != getBar()); // expected-warning {{comparison of different enumeration types ('F… in test()
139 …while (getFoo() >= getBar()); // expected-warning {{comparison of different enumeration types ('F… in test()
140 …while (getFoo() <= getBar()); // expected-warning {{comparison of different enumeration types ('F… in test()
141 …while (getFoo() > getBar()); // expected-warning {{comparison of different enumeration types ('Fo… in test()
142 …while (getFoo() < getBar()); // expected-warning {{comparison of different enumeration types ('Fo… in test()
188 …while (y == getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
189 …while (y != getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
190 …while (y >= getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
191 …while (y <= getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
192 …while (y > getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
193 …while (y < getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
195 …while (BarD == getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
196 …while (BarD != getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
197 …while (BarD >= getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
198 …while (BarD <= getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
199 …while (BarD > getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' a… in test()
200 …while (BarD < getFoo()); // expected-warning {{comparison of different enumeration types ('Bar' a… in test()
202 …while (getBar() == getFoo()); // expected-warning {{comparison of different enumeration types ('B… in test()
203 …while (getBar() != getFoo()); // expected-warning {{comparison of different enumeration types ('B… in test()
204 …while (getBar() >= getFoo()); // expected-warning {{comparison of different enumeration types ('B… in test()
205 …while (getBar() <= getFoo()); // expected-warning {{comparison of different enumeration types ('B… in test()
206 …while (getBar() > getFoo()); // expected-warning {{comparison of different enumeration types ('Ba… in test()
207 …while (getBar() < getFoo()); // expected-warning {{comparison of different enumeration types ('Ba… in test()