• Home
  • Raw
  • Download

Lines Matching refs:y

4 void f(int x, int y, int z) {  in f()  argument
48 if (!a > y) {} // no warning in f()
55 if (!a < y) {} // no warning in f()
62 if (!a >= y) {} // no warning in f()
69 if (!a <= y) {} // no warning in f()
82 if ((a<y) > 0) {} // no warning in f()
83 …if ((a<y) > 1) {} // expected-warning {{comparison of constant 1 with expression of type 'bool' i… in f()
84 …if ((a<y) > 4) {} // expected-warning {{comparison of constant 4 with expression of type 'bool' i… in f()
85 if ((a<y) > z) {} // no warning in f()
86 …if ((a<y) > -1) {} // expected-warning {{comparison of constant -1 with expression of type 'bool' … in f()
88 if ((a<y) == 0) {} // no warning in f()
89 if ((a<y) == 1) {} // no warning in f()
90 …if ((a<y) == 2) {} // expected-warning {{comparison of constant 2 with expression of type 'bool' i… in f()
91 if ((a<y) == z) {} // no warning in f()
92 …if ((a<y) == -1) {}// expected-warning {{comparison of constant -1 with expression of type 'bool' … in f()
94 if ((a<y) != 0) {} // no warning in f()
95 if ((a<y) != 1) {} // no warning in f()
96 …if ((a<y) != 2) {} // expected-warning {{comparison of constant 2 with expression of type 'bool' i… in f()
97 if ((a<y) != z) {} // no warning in f()
98 …if ((a<y) != -1) {}// expected-warning {{comparison of constant -1 with expression of type 'bool' … in f()
100 if ((a<y) == z) {} // no warning in f()
101 if (a>y<z) {} // no warning in f()
102 if ((a<y) > z) {} // no warning in f()
103 if((a<y)>(z<y)) {} // no warning in f()
104 if((a<y)==(z<y)){} // no warning in f()
105 if((a<y)!=(z<y)){} // no warning in f()
106 if((z==x)<(y==z)){} // no warning in f()
107 if((a<y)!=((z==x)<(y==z))){} // no warning in f()
113 if (y > !a) {} // no warning in f()
119 if (y < !a) {} // no warning in f()
126 if (y >= !a) {} // no warning in f()
132 if (y <= !a) {} // in f()
143 …if (0 > (a<y)) {} // expected-warning {{comparison of constant 0 with expression of type 'bool' i… in f()
144 if (1 > (a<y)) {} // no warning in f()
145 …if (4 > (a<y)) {} // expected-warning {{comparison of constant 4 with expression of type 'bool' i… in f()
146 if (z > (a<y)) {} // in f()
147 …if (-1 > (a<y)) {} // expected-warning {{comparison of constant -1 with expression of type 'bool' … in f()
149 if (0 == (a<y)) {} // no warning in f()
150 if (1 == (a<y)) {} // no warning in f()
151 …if (2 == (a<y)) {} // expected-warning {{comparison of constant 2 with expression of type 'bool' i… in f()
152 if (z == (a<y)) {} // no warning in f()
153 …if (-1 == (a<y)){} // expected-warning {{comparison of constant -1 with expression of type 'bool' … in f()
155 if (0 !=(a<y)) {} // no warning in f()
156 if (1 !=(a<y)) {} // no warning in f()
157 …if (2 !=(a<y)) {} // expected-warning {{comparison of constant 2 with expression of type 'bool' i… in f()
158 if (z !=(a<y)) {} // no warning in f()
159 …if (-1 !=(a<y)) {} // expected-warning {{comparison of constant -1 with expression of type 'bool' … in f()
161 if (z ==(a<y)) {} // no warning in f()
162 if (z<a>y) {} // no warning in f()
163 if (z > (a<y)) {} // no warning in f()
164 if((z<y)>(a<y)) {} // no warning in f()
165 if((z<y)==(a<y)){} // no warning in f()
166 if((z<y)!=(a<y)){} // no warning in f()
167 if((y==z)<(z==x)){} // no warning in f()
168 if(((z==x)<(y==z))!=(a<y)){} // no warning in f()
170 if(((z==x)<(-1==z))!=(a<y)){} // no warning in f()
171 if(((z==x)<(z==-1))!=(a<y)){} // no warning in f()
172 …if(((z==x)<-1)!=(a<y)){} // expected-warning {{comparison of constant -1 with expression of type '… in f()
173 …if(((z==x)< 2)!=(a<y)){} // expected-warning {{comparison of constant 2 with expression of type 'b… in f()
174 if(((z==x)<(z>2))!=(a<y)){} // no warning in f()