Lines Matching full:different
79 …while (B1 == B2); // expected-warning {{comparison of different enumeration types ('name1::Baz' a… in test()
80 …while (name1::B2 == name2::B3); // expected-warning {{comparison of different enumeration types (… in test()
81 …while (z == name2::B2); // expected-warning {{comparison of different enumeration types ('Baz' an… in test()
83 …while (((((B1)))) == B2); // expected-warning {{comparison of different enumeration types ('name1… in test()
84 …while (name1::B2 == (name2::B3)); // expected-warning {{comparison of different enumeration types… in test()
85 …while (z == ((((name2::B2))))); // expected-warning {{comparison of different enumeration types (… in test()
87 …while ((((B1))) == (((B2)))); // expected-warning {{comparison of different enumeration types ('n… in test()
88 …while ((name1::B2) == (((name2::B3)))); // expected-warning {{comparison of different enumeration… in test()
89 …while ((((z))) == (name2::B2)); // expected-warning {{comparison of different enumeration types (… in test()
91 …while (x == a); // expected-warning {{comparison of different enumeration types ('Foo' and 'name1… in test()
92 …while (x == b); // expected-warning {{comparison of different enumeration types ('Foo' and 'oneFo… in test()
93 …while (x == c); // expected-warning {{comparison of different enumeration types ('Foo' and 'twoFo… in test()
95 …while (x == y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar')… in test()
96 …while (x != y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar')… in test()
97 …while (x >= y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar')… in test()
98 …while (x <= y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar')… in test()
99 …while (x > y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar')}} in test()
100 …while (x < y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar')}} in test()
102 …while (FooB == y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
103 …while (FooB != y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
104 …while (FooB >= y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
105 …while (FooB <= y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Ba… in test()
106 …while (FooB > y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar… in test()
107 …while (FooB < y); // expected-warning {{comparison of different enumeration types ('Foo' and 'Bar… 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()
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()
144 …while (FooB == getBar()); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
145 …while (FooB != getBar()); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
146 …while (FooB >= getBar()); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
147 …while (FooB <= getBar()); // expected-warning {{comparison of different enumeration types ('Foo' … in test()
148 …while (FooB > getBar()); // expected-warning {{comparison of different enumeration types ('Foo' a… in test()
149 …while (FooB < getBar()); // expected-warning {{comparison of different enumeration types ('Foo' a… in test()
151 …while (x == getBar()); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
152 …while (x != getBar()); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
153 …while (x >= getBar()); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
154 …while (x <= getBar()); // expected-warning {{comparison of different enumeration types ('Foo' and… in test()
155 …while (x > getBar()); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
156 …while (x < getBar()); // expected-warning {{comparison of different enumeration types ('Foo' and … in test()
160 …while (y == x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo')… in test()
161 …while (y != x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo')… in test()
162 …while (y >= x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo')… in test()
163 …while (y <= x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo')… in test()
164 …while (y > x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo')}} in test()
165 …while (y < x); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo')}} in test()
167 …while (y == FooB); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
168 …while (y != FooB); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
169 …while (y >= FooB); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
170 …while (y <= FooB); // expected-warning {{comparison of different enumeration types ('Bar' and 'Fo… in test()
171 …while (y > FooB); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo… in test()
172 …while (y < FooB); // expected-warning {{comparison of different enumeration types ('Bar' and 'Foo… 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()
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()
209 …while (getBar() == FooB); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
210 …while (getBar() != FooB); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
211 …while (getBar() >= FooB); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
212 …while (getBar() <= FooB); // expected-warning {{comparison of different enumeration types ('Bar' … in test()
213 …while (getBar() > FooB); // expected-warning {{comparison of different enumeration types ('Bar' a… in test()
214 …while (getBar() < FooB); // expected-warning {{comparison of different enumeration types ('Bar' a… in test()
216 …while (getBar() == x); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
217 …while (getBar() != x); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
218 …while (getBar() >= x); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
219 …while (getBar() <= x); // expected-warning {{comparison of different enumeration types ('Bar' and… in test()
220 …while (getBar() > x); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
221 …while (getBar() < x); // expected-warning {{comparison of different enumeration types ('Bar' and … in test()
223 …while (td == FooA); // expected-warning {{comparison of different enumeration types ('TD' and 'Fo… in test()
224 …while (td == BarD); // expected-warning {{comparison of different enumeration types ('TD' and 'Ba… in test()
225 …while (name1::F1 == td); // expected-warning {{comparison of different enumeration types ('name1:… in test()
226 …while (name2::B1 == td); // expected-warning {{comparison of different enumeration types ('name2:… in test()
227 …while (td == a); // expected-warning {{comparison of different enumeration types ('TD' and 'name1… in test()
228 …while (td == b); // expected-warning {{comparison of different enumeration types ('TD' and 'oneFo… in test()
229 …while (td == c); // expected-warning {{comparison of different enumeration types ('TD' and 'twoFo… in test()
230 …while (td == x); // expected-warning {{comparison of different enumeration types ('TD' and 'Foo')… in test()
231 …while (td == y); // expected-warning {{comparison of different enumeration types ('TD' and 'Bar')… in test()
232 …while (td == z); // expected-warning {{comparison of different enumeration types ('TD' and 'Baz')… in test()
234 …while (a == TD1); // expected-warning {{comparison of different enumeration types ('name1::Foo' a… in test()
235 …while (b == TD2); // expected-warning {{comparison of different enumeration types ('oneFoo' (aka … in test()
236 …while (c == TD1); // expected-warning {{comparison of different enumeration types ('twoFoo' (aka … in test()
237 …while (x == TD2); // expected-warning {{comparison of different enumeration types ('Foo' and 'TD'… in test()
238 …while (y == TD1); // expected-warning {{comparison of different enumeration types ('Bar' and 'TD'… in test()
239 …while (z == TD2); // expected-warning {{comparison of different enumeration types ('Baz' and 'TD'… in test()
244 …case name2::B2: break; // expected-warning {{comparison of different enumeration types in switch s… in test()
250 …case BarD: break; // expected-warning {{comparison of different enumeration types in switch statem… in test()
256 …case FooA: break; // expected-warning {{comparison of different enumeration types in switch statem… in test()
268 …case FooB: break; // expected-warning {{comparison of different enumeration types in switch statem… in test()
269 …case BarF: break; // expected-warning {{comparison of different enumeration types in switch statem… in test()
280 …case TD1: break; // expected-warning {{comparison of different enumeration types in switch stateme… in test()
281 …case TD2: break; // expected-warning {{comparison of different enumeration types in switch stateme… in test()