• Home
  • Raw
  • Download

Lines Matching refs:getFoo

22 Foo getFoo();
112 …while (getFoo() == y); // expected-warning {{comparison of two values with different enumeration … in test()
113 …while (getFoo() != y); // expected-warning {{comparison of two values with different enumeration … in test()
114 …while (getFoo() >= y); // expected-warning {{comparison of two values with different enumeration … in test()
115 …while (getFoo() <= y); // expected-warning {{comparison of two values with different enumeration … in test()
116 …while (getFoo() > y); // expected-warning {{comparison of two values with different enumeration t… in test()
117 …while (getFoo() < y); // expected-warning {{comparison of two values with different enumeration t… in test()
119 …while (getFoo() == BarD); // expected-warning {{comparison of two values with different enumerati… in test()
120 …while (getFoo() != BarD); // expected-warning {{comparison of two values with different enumerati… in test()
121 …while (getFoo() >= BarD); // expected-warning {{comparison of two values with different enumerati… in test()
122 …while (getFoo() <= BarD); // expected-warning {{comparison of two values with different enumerati… in test()
123 …while (getFoo() > BarD); // expected-warning {{comparison of two values with different enumeratio… in test()
124 …while (getFoo() < BarD); // expected-warning {{comparison of two values with different enumeratio… in test()
126 …while (getFoo() == getBar()); // expected-warning {{comparison of two values with different enume… in test()
127 …while (getFoo() != getBar()); // expected-warning {{comparison of two values with different enume… in test()
128 …while (getFoo() >= getBar()); // expected-warning {{comparison of two values with different enume… in test()
129 …while (getFoo() <= getBar()); // expected-warning {{comparison of two values with different enume… in test()
130 …while (getFoo() > getBar()); // expected-warning {{comparison of two values with different enumer… in test()
131 …while (getFoo() < getBar()); // expected-warning {{comparison of two values with different enumer… in test()
177 …while (y == getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
178 …while (y != getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
179 …while (y >= getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
180 …while (y <= getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
181 …while (y > getFoo()); // expected-warning {{comparison of two values with different enumeration t… in test()
182 …while (y < getFoo()); // expected-warning {{comparison of two values with different enumeration t… in test()
184 …while (BarD == getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
185 …while (BarD != getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
186 …while (BarD >= getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
187 …while (BarD <= getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
188 …while (BarD > getFoo()); // expected-warning {{comparison of two values with different enumeratio… in test()
189 …while (BarD < getFoo()); // expected-warning {{comparison of two values with different enumeratio… in test()
191 …while (getBar() == getFoo()); // expected-warning {{comparison of two values with different enume… in test()
192 …while (getBar() != getFoo()); // expected-warning {{comparison of two values with different enume… in test()
193 …while (getBar() >= getFoo()); // expected-warning {{comparison of two values with different enume… in test()
194 …while (getBar() <= getFoo()); // expected-warning {{comparison of two values with different enume… in test()
195 …while (getBar() > getFoo()); // expected-warning {{comparison of two values with different enumer… in test()
196 …while (getBar() < getFoo()); // expected-warning {{comparison of two values with different enumer… in test()