• Home
  • Raw
  • Download

Lines Matching refs:FooB

3 enum Foo { FooA, FooB, FooC };  enumerator
91 …while (FooB == y); // expected-warning {{comparison of two values with different enumeration type… in test()
92 …while (FooB != y); // expected-warning {{comparison of two values with different enumeration type… in test()
93 …while (FooB >= y); // expected-warning {{comparison of two values with different enumeration type… in test()
94 …while (FooB <= y); // expected-warning {{comparison of two values with different enumeration type… in test()
95 …while (FooB > y); // expected-warning {{comparison of two values with different enumeration types… in test()
96 …while (FooB < y); // expected-warning {{comparison of two values with different enumeration types… in test()
98 …while (FooB == BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
99 …while (FooB != BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
100 …while (FooB >= BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
101 …while (FooB <= BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
102 …while (FooB > BarD); // expected-warning {{comparison of two values with different enumeration ty… in test()
103 …while (FooB < BarD); // expected-warning {{comparison of two values with different enumeration ty… in test()
133 …while (FooB == getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
134 …while (FooB != getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
135 …while (FooB >= getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
136 …while (FooB <= getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
137 …while (FooB > getBar()); // expected-warning {{comparison of two values with different enumeratio… in test()
138 …while (FooB < getBar()); // expected-warning {{comparison of two values with different enumeratio… in test()
156 …while (y == FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
157 …while (y != FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
158 …while (y >= FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
159 …while (y <= FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
160 …while (y > FooB); // expected-warning {{comparison of two values with different enumeration types… in test()
161 …while (y < FooB); // expected-warning {{comparison of two values with different enumeration types… in test()
163 …while (BarD == FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
164 …while (BarD != FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
165 …while (BarD >= FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
166 …while (BarD <= FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
167 …while (BarD > FooB); // expected-warning {{comparison of two values with different enumeration ty… in test()
168 …while (BarD <FooB); // expected-warning {{comparison of two values with different enumeration typ… in test()
198 …while (getBar() == FooB); // expected-warning {{comparison of two values with different enumerati… in test()
199 …while (getBar() != FooB); // expected-warning {{comparison of two values with different enumerati… in test()
200 …while (getBar() >= FooB); // expected-warning {{comparison of two values with different enumerati… in test()
201 …while (getBar() <= FooB); // expected-warning {{comparison of two values with different enumerati… in test()
202 …while (getBar() > FooB); // expected-warning {{comparison of two values with different enumeratio… in test()
203 …while (getBar() < FooB); // expected-warning {{comparison of two values with different enumeratio… in test()