Lines Matching refs:getBar

26 Bar getBar();
137 …while (getFoo() == getBar()); // expected-warning {{comparison of two values with different enume… in test()
138 …while (getFoo() != getBar()); // expected-warning {{comparison of two values with different enume… in test()
139 …while (getFoo() >= getBar()); // expected-warning {{comparison of two values with different enume… in test()
140 …while (getFoo() <= getBar()); // expected-warning {{comparison of two values with different enume… in test()
141 …while (getFoo() > getBar()); // expected-warning {{comparison of two values with different enumer… in test()
142 …while (getFoo() < getBar()); // expected-warning {{comparison of two values with different enumer… in test()
144 …while (FooB == getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
145 …while (FooB != getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
146 …while (FooB >= getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
147 …while (FooB <= getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
148 …while (FooB > getBar()); // expected-warning {{comparison of two values with different enumeratio… in test()
149 …while (FooB < getBar()); // expected-warning {{comparison of two values with different enumeratio… in test()
151 …while (x == getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
152 …while (x != getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
153 …while (x >= getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
154 …while (x <= getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
155 …while (x > getBar()); // expected-warning {{comparison of two values with different enumeration t… in test()
156 …while (x < getBar()); // expected-warning {{comparison of two values with different enumeration t… in test()
202 …while (getBar() == getFoo()); // expected-warning {{comparison of two values with different enume… in test()
203 …while (getBar() != getFoo()); // expected-warning {{comparison of two values with different enume… in test()
204 …while (getBar() >= getFoo()); // expected-warning {{comparison of two values with different enume… in test()
205 …while (getBar() <= getFoo()); // expected-warning {{comparison of two values with different enume… in test()
206 …while (getBar() > getFoo()); // expected-warning {{comparison of two values with different enumer… in test()
207 …while (getBar() < getFoo()); // expected-warning {{comparison of two values with different enumer… in test()
209 …while (getBar() == FooB); // expected-warning {{comparison of two values with different enumerati… in test()
210 …while (getBar() != FooB); // expected-warning {{comparison of two values with different enumerati… in test()
211 …while (getBar() >= FooB); // expected-warning {{comparison of two values with different enumerati… in test()
212 …while (getBar() <= FooB); // expected-warning {{comparison of two values with different enumerati… in test()
213 …while (getBar() > FooB); // expected-warning {{comparison of two values with different enumeratio… in test()
214 …while (getBar() < FooB); // expected-warning {{comparison of two values with different enumeratio… in test()
216 …while (getBar() == x); // expected-warning {{comparison of two values with different enumeration … in test()
217 …while (getBar() != x); // expected-warning {{comparison of two values with different enumeration … in test()
218 …while (getBar() >= x); // expected-warning {{comparison of two values with different enumeration … in test()
219 …while (getBar() <= x); // expected-warning {{comparison of two values with different enumeration … in test()
220 …while (getBar() > x); // expected-warning {{comparison of two values with different enumeration t… in test()
221 …while (getBar() < x); // expected-warning {{comparison of two values with different enumeration t… in test()
253 switch(getBar()) { in test()