Lines Matching refs:BarD
5 enum Bar { BarD, BarE, BarF }; enumerator
30 Bar y = BarD; in test()
38 while (y == BarD); in test()
55 while ((y) == BarD); in test()
65 while ((y) == (BarD)); in test()
109 …while (FooB == BarD); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
110 …while (FooB != BarD); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
111 …while (FooB >= BarD); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
112 …while (FooB <= BarD); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
113 …while (FooB > BarD); // expected-warning {{comparison of different enumeration types ('Foo' and '… in test()
114 …while (FooB < BarD); // expected-warning {{comparison of different enumeration types ('Foo' and '… in test()
116 …while (x == BarD); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
117 …while (x != BarD); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
118 …while (x >= BarD); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
119 …while (x <= BarD); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
120 …while (x > BarD); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar… in test()
121 …while (x < BarD); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar… 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()
174 …while (BarD == FooB); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
175 …while (BarD != FooB); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
176 …while (BarD >= FooB); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
177 …while (BarD <= FooB); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
178 …while (BarD > FooB); // expected-warning {{comparison of different enumeration types ('Bar' and '… in test()
179 …while (BarD <FooB); // expected-warning {{comparison of different enumeration types ('Bar' and 'F… in test()
181 …while (BarD == x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
182 …while (BarD != x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
183 …while (BarD >= x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
184 …while (BarD <= x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
185 …while (BarD < x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo… in test()
186 …while (BarD > x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo… 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()
224 …while (td == BarD); // expected-warning {{comparison of different enumeration types ('TD' and 'Ba… in test()
250 …case BarD: break; // expected-warning {{comparison of different enumeration types in switch statem… in test()