Lines Matching refs:argument

10 …printf("%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'in…
11 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
16 …NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'in…
17 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
18 NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has type 'int'}}
25 …printf("%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'char …
27 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c…
31 …NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'char …
33 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c…
34 …NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has type 'char *…
41 NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'id'}}
42 …NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'id…
43 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
52 …NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'CFStr…
53 …NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'CF…
54 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C…
63 …NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'block…
64 …NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'bl…
65 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'b…
73 …NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'Class…
74 …NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'Cl…
75 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C…
85 …NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has underlying t…
92 …NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has underlying t…
99 …NSLog(@"%s", c); // expected-warning{{format specifies type 'char *' but the argument has type 'ch…
102 …NSLog(@"%lf", c); // expected-warning{{format specifies type 'double' but the argument has type 'c…
105 …NSLog(@"%@", c); // expected-warning{{format specifies type 'id' but the argument has type 'char'}}
112 …NSLog(@"%s", s); // expected-warning{{format specifies type 'char *' but the argument has type 'si…
115 …NSLog(@"%lf", s); // expected-warning{{format specifies type 'double' but the argument has type 's…
118 …NSLog(@"%@", s); // expected-warning{{format specifies type 'id' but the argument has type 'signed…
125 …NSLog(@"%s", u); // expected-warning{{format specifies type 'char *' but the argument has type 'un…
128 …NSLog(@"%lf", u); // expected-warning{{format specifies type 'double' but the argument has type 'u…
131 …NSLog(@"%@", u); // expected-warning{{format specifies type 'id' but the argument has type 'unsign…
138 …NSLog(@"%s", n); // expected-warning{{format specifies type 'char *' but the argument has type 'ui…
141 …NSLog(@"%lf", n); // expected-warning{{format specifies type 'double' but the argument has type 'u…
144 …NSLog(@"%@", n); // expected-warning{{format specifies type 'id' but the argument has type 'uint8_…
151 …NSLog(@"%s", 'a'); // expected-warning{{format specifies type 'char *' but the argument has type '…
154 …NSLog(@"%lf", 'a'); // expected-warning{{format specifies type 'double' but the argument has type …
157 …NSLog(@"%@", 'a'); // expected-warning{{format specifies type 'id' but the argument has type 'char…
164 …NSLog(@"%s", 'abcd'); // expected-warning{{format specifies type 'char *' but the argument has typ…
167 …NSLog(@"%lf", 'abcd'); // expected-warning{{format specifies type 'double' but the argument has ty…
170 …NSLog(@"%@", 'abcd'); // expected-warning{{format specifies type 'id' but the argument has type 'i…
177 // type-checker expects %c to correspond to an integer argument, because
180 …NSLog(@"%c", 'abcd'); // missing-warning{{format specifies type 'char' but the argument has type '…
189 …d-warning{{format specifies type 'unichar' (aka 'unsigned short') but the argument has type 'int'}}
195 …d-warning{{format specifies type 'unichar' (aka 'unsigned short') but the argument has type 'int'}}
199 …d-warning{{format specifies type 'unichar' (aka 'unsigned short') but the argument has type 'int'}}
204 …warning{{format specifies type 'unichar' (aka 'unsigned short') but the argument has type 'double'…
208 …-warning{{format specifies type 'unichar' (aka 'unsigned short') but the argument has type 'char'}}
212 …-warning{{format specifies type 'unichar' (aka 'unsigned short') but the argument has type 'char'}}
219 …printf("%d", u); // expected-warning{{format specifies type 'int' but the argument has type 'unsig…
220 …printf("%i", u); // expected-warning{{format specifies type 'int' but the argument has type 'unsig…
221 …printf("%u", i); // expected-warning{{format specifies type 'unsigned int' but the argument has ty…
227 …printf("%+d", u); // expected-warning{{format specifies type 'int' but the argument has type 'unsi…
248 …printf("%f", (Implicit)0); // expected-warning{{format specifies type 'double' but the argument ha…
251 …ongLong)0); // expected-warning{{format specifies type 'double' but the argument has underlying ty…
254 …itShort)0); // expected-warning{{format specifies type 'double' but the argument has underlying ty…