• Home
  • Raw
  • Download

Lines Matching full:while

33   while (x == FooA);  in test()
34 while (y == BarD); in test()
35 while (a == name1::F1); in test()
36 while (z == name1::B2); in test()
37 while (a == b); in test()
38 while (a == c); in test()
39 while (b == c); in test()
40 while (B1 == name1::B2); in test()
41 while (B2 == name2::B1); in test()
42while (x == AnonAA); // expected-warning {{comparison of constant 'AnonAA' (42) with expression of… in test()
43while (AnonBB == y); // expected-warning {{comparison of constant 'AnonBB' (45) with expression of… in test()
44 while (AnonAA == AnonAB); in test()
45 while (AnonAB == AnonBA); in test()
46 while (AnonBB == AnonAA); in test()
48 while ((x) == FooA); in test()
49 while ((y) == BarD); in test()
50 while ((a) == name1::F1); in test()
51 while (z == (name1::B2)); in test()
52 while (a == (b)); in test()
53 while (a == (c)); in test()
54 while ((b) == (c)); in test()
55 while ((B1) == (name1::B2)); in test()
56 while ((B2) == (name2::B1)); in test()
58 while (((x)) == FooA); in test()
59 while ((y) == (BarD)); in test()
60 while ((a) == (name1::F1)); in test()
61 while (z == (name1::B2)); in test()
62 while ((a) == ((((b))))); in test()
63 while (((a)) == (c)); in test()
64 while ((b) == (((c)))); in test()
65 while ((((((B1))))) == (((name1::B2)))); in test()
66 while (B2 == ((((((name2::B1))))))); in test()
68while (B1 == B2); // expected-warning {{comparison of two values with different enumeration types… in test()
69while (name1::B2 == name2::B3); // expected-warning {{comparison of two values with different enu… in test()
70while (z == name2::B2); // expected-warning {{comparison of two values with different enumeration… in test()
72while (((((B1)))) == B2); // expected-warning {{comparison of two values with different enumerati… in test()
73while (name1::B2 == (name2::B3)); // expected-warning {{comparison of two values with different e… in test()
74while (z == ((((name2::B2))))); // expected-warning {{comparison of two values with different enu… in test()
76while ((((B1))) == (((B2)))); // expected-warning {{comparison of two values with different enume… in test()
77while ((name1::B2) == (((name2::B3)))); // expected-warning {{comparison of two values with diffe… in test()
78while ((((z))) == (name2::B2)); // expected-warning {{comparison of two values with different enu… in test()
80while (x == a); // expected-warning {{comparison of two values with different enumeration types (… in test()
81while (x == b); // expected-warning {{comparison of two values with different enumeration types (… in test()
82while (x == c); // expected-warning {{comparison of two values with different enumeration types (… in test()
84while (x == y); // expected-warning {{comparison of two values with different enumeration types (… in test()
85while (x != y); // expected-warning {{comparison of two values with different enumeration types (… in test()
86while (x >= y); // expected-warning {{comparison of two values with different enumeration types (… in test()
87while (x <= y); // expected-warning {{comparison of two values with different enumeration types (… in test()
88while (x > y); // expected-warning {{comparison of two values with different enumeration types ('… in test()
89while (x < y); // expected-warning {{comparison of two values with different enumeration types ('… in test()
91while (FooB == y); // expected-warning {{comparison of two values with different enumeration type… in test()
92while (FooB != y); // expected-warning {{comparison of two values with different enumeration type… in test()
93while (FooB >= y); // expected-warning {{comparison of two values with different enumeration type… in test()
94while (FooB <= y); // expected-warning {{comparison of two values with different enumeration type… in test()
95while (FooB > y); // expected-warning {{comparison of two values with different enumeration types… in test()
96while (FooB < y); // expected-warning {{comparison of two values with different enumeration types… in test()
98while (FooB == BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
99while (FooB != BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
100while (FooB >= BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
101while (FooB <= BarD); // expected-warning {{comparison of two values with different enumeration t… in test()
102while (FooB > BarD); // expected-warning {{comparison of two values with different enumeration ty… in test()
103while (FooB < BarD); // expected-warning {{comparison of two values with different enumeration ty… in test()
105while (x == BarD); // expected-warning {{comparison of two values with different enumeration type… in test()
106while (x != BarD); // expected-warning {{comparison of two values with different enumeration type… in test()
107while (x >= BarD); // expected-warning {{comparison of two values with different enumeration type… in test()
108while (x <= BarD); // expected-warning {{comparison of two values with different enumeration type… in test()
109while (x > BarD); // expected-warning {{comparison of two values with different enumeration types… in test()
110while (x < BarD); // expected-warning {{comparison of two values with different enumeration types… in test()
112while (getFoo() == y); // expected-warning {{comparison of two values with different enumeration … in test()
113while (getFoo() != y); // expected-warning {{comparison of two values with different enumeration … in test()
114while (getFoo() >= y); // expected-warning {{comparison of two values with different enumeration … in test()
115while (getFoo() <= y); // expected-warning {{comparison of two values with different enumeration … in test()
116while (getFoo() > y); // expected-warning {{comparison of two values with different enumeration t… in test()
117while (getFoo() < y); // expected-warning {{comparison of two values with different enumeration t… in test()
119while (getFoo() == BarD); // expected-warning {{comparison of two values with different enumerati… in test()
120while (getFoo() != BarD); // expected-warning {{comparison of two values with different enumerati… in test()
121while (getFoo() >= BarD); // expected-warning {{comparison of two values with different enumerati… in test()
122while (getFoo() <= BarD); // expected-warning {{comparison of two values with different enumerati… in test()
123while (getFoo() > BarD); // expected-warning {{comparison of two values with different enumeratio… in test()
124while (getFoo() < BarD); // expected-warning {{comparison of two values with different enumeratio… in test()
126while (getFoo() == getBar()); // expected-warning {{comparison of two values with different enume… in test()
127while (getFoo() != getBar()); // expected-warning {{comparison of two values with different enume… in test()
128while (getFoo() >= getBar()); // expected-warning {{comparison of two values with different enume… in test()
129while (getFoo() <= getBar()); // expected-warning {{comparison of two values with different enume… in test()
130while (getFoo() > getBar()); // expected-warning {{comparison of two values with different enumer… in test()
131while (getFoo() < getBar()); // expected-warning {{comparison of two values with different enumer… in test()
133while (FooB == getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
134while (FooB != getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
135while (FooB >= getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
136while (FooB <= getBar()); // expected-warning {{comparison of two values with different enumerati… in test()
137while (FooB > getBar()); // expected-warning {{comparison of two values with different enumeratio… in test()
138while (FooB < getBar()); // expected-warning {{comparison of two values with different enumeratio… in test()
140while (x == getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
141while (x != getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
142while (x >= getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
143while (x <= getBar()); // expected-warning {{comparison of two values with different enumeration … in test()
144while (x > getBar()); // expected-warning {{comparison of two values with different enumeration t… in test()
145while (x < getBar()); // expected-warning {{comparison of two values with different enumeration t… in test()
149while (y == x); // expected-warning {{comparison of two values with different enumeration types (… in test()
150while (y != x); // expected-warning {{comparison of two values with different enumeration types (… in test()
151while (y >= x); // expected-warning {{comparison of two values with different enumeration types (… in test()
152while (y <= x); // expected-warning {{comparison of two values with different enumeration types (… in test()
153while (y > x); // expected-warning {{comparison of two values with different enumeration types ('… in test()
154while (y < x); // expected-warning {{comparison of two values with different enumeration types ('… in test()
156while (y == FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
157while (y != FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
158while (y >= FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
159while (y <= FooB); // expected-warning {{comparison of two values with different enumeration type… in test()
160while (y > FooB); // expected-warning {{comparison of two values with different enumeration types… in test()
161while (y < FooB); // expected-warning {{comparison of two values with different enumeration types… in test()
163while (BarD == FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
164while (BarD != FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
165while (BarD >= FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
166while (BarD <= FooB); // expected-warning {{comparison of two values with different enumeration t… in test()
167while (BarD > FooB); // expected-warning {{comparison of two values with different enumeration ty… in test()
168while (BarD <FooB); // expected-warning {{comparison of two values with different enumeration typ… in test()
170while (BarD == x); // expected-warning {{comparison of two values with different enumeration type… in test()
171while (BarD != x); // expected-warning {{comparison of two values with different enumeration type… in test()
172while (BarD >= x); // expected-warning {{comparison of two values with different enumeration type… in test()
173while (BarD <= x); // expected-warning {{comparison of two values with different enumeration type… in test()
174while (BarD < x); // expected-warning {{comparison of two values with different enumeration types… in test()
175while (BarD > x); // expected-warning {{comparison of two values with different enumeration types… in test()
177while (y == getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
178while (y != getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
179while (y >= getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
180while (y <= getFoo()); // expected-warning {{comparison of two values with different enumeration … in test()
181while (y > getFoo()); // expected-warning {{comparison of two values with different enumeration t… in test()
182while (y < getFoo()); // expected-warning {{comparison of two values with different enumeration t… in test()
184while (BarD == getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
185while (BarD != getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
186while (BarD >= getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
187while (BarD <= getFoo()); // expected-warning {{comparison of two values with different enumerati… in test()
188while (BarD > getFoo()); // expected-warning {{comparison of two values with different enumeratio… in test()
189while (BarD < getFoo()); // expected-warning {{comparison of two values with different enumeratio… in test()
191while (getBar() == getFoo()); // expected-warning {{comparison of two values with different enume… in test()
192while (getBar() != getFoo()); // expected-warning {{comparison of two values with different enume… in test()
193while (getBar() >= getFoo()); // expected-warning {{comparison of two values with different enume… in test()
194while (getBar() <= getFoo()); // expected-warning {{comparison of two values with different enume… in test()
195while (getBar() > getFoo()); // expected-warning {{comparison of two values with different enumer… in test()
196while (getBar() < getFoo()); // expected-warning {{comparison of two values with different enumer… in test()
198while (getBar() == FooB); // expected-warning {{comparison of two values with different enumerati… in test()
199while (getBar() != FooB); // expected-warning {{comparison of two values with different enumerati… in test()
200while (getBar() >= FooB); // expected-warning {{comparison of two values with different enumerati… in test()
201while (getBar() <= FooB); // expected-warning {{comparison of two values with different enumerati… in test()
202while (getBar() > FooB); // expected-warning {{comparison of two values with different enumeratio… in test()
203while (getBar() < FooB); // expected-warning {{comparison of two values with different enumeratio… in test()
205while (getBar() == x); // expected-warning {{comparison of two values with different enumeration … in test()
206while (getBar() != x); // expected-warning {{comparison of two values with different enumeration … in test()
207while (getBar() >= x); // expected-warning {{comparison of two values with different enumeration … in test()
208while (getBar() <= x); // expected-warning {{comparison of two values with different enumeration … in test()
209while (getBar() > x); // expected-warning {{comparison of two values with different enumeration t… in test()
210while (getBar() < x); // expected-warning {{comparison of two values with different enumeration t… in test()