• Home
  • Raw
  • Download

Lines Matching refs:warning

32 …printf("%s", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used a…
33 …printf("%s", getNSUInteger()); // expected-warning{{values of type 'NSUInteger' should not be used…
34 …printf("%s", getSInt32()); // expected-warning{{values of type 'SInt32' should not be used as form…
35 …printf("%s", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as form…
69 …printf("%s", arr[0]); // expected-warning{{values of type 'NSInteger' should not be used as forma…
70 …printf("%s", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used …
71 …printf("%s", i); // expected-warning{{values of type 'NSInteger' should not be used as format arg…
72 …printf("%s", obj->_value); // expected-warning{{values of type 'NSInteger' should not be used as …
73 …printf("%s", [obj getInteger]); // expected-warning{{values of type 'NSInteger' should not be use…
74 …printf("%s", obj.value); // expected-warning{{values of type 'NSInteger' should not be used as fo…
75 …printf("%s", record->value); // expected-warning{{values of type 'NSInteger' should not be used a…
76 …printf("%s", (i ? i : i)); // expected-warning{{values of type 'NSInteger' should not be used as …
77 …printf("%s", *arr); // expected-warning{{values of type 'NSInteger' should not be used as format …
81 …printf("%s", i ? i : i); // expected-warning{{values of type 'NSInteger' should not be used as for…
92 …printf("%d", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used a…
93 …printf("%u", getNSUInteger()); // expected-warning{{values of type 'NSUInteger' should not be used…
94 …printf("%ld", getSInt32()); // expected-warning{{values of type 'SInt32' should not be used as for…
95 …printf("%lu", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as for…
111 …printf("%x", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used a…
112 …printf("%x", getNSUInteger()); // expected-warning{{values of type 'NSUInteger' should not be used…
122 printf("%ld", getNSInteger()); // no-warning
123 printf("%lu", getNSUInteger()); // no-warning
124 printf("%d", getSInt32()); // no-warning
125 printf("%u", getUInt32()); // no-warning
131 …printf("%ld", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used …
132 …printf("%lu", getNSUInteger()); // expected-warning{{values of type 'NSUInteger' should not be use…
133 …printf("%d", getSInt32()); // expected-warning{{values of type 'SInt32' should not be used as form…
134 …printf("%u", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as form…
146 …printf("%lx", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used …
147 …printf("%lx", getNSUInteger()); // expected-warning{{values of type 'NSUInteger' should not be use…
155 printf("%d", getNSInteger()); // no-warning
156 printf("%u", getNSUInteger()); // no-warning
157 printf("%ld", getSInt32()); // no-warning
158 printf("%lu", getUInt32()); // no-warning
165 …printf("%s", (NSInteger)0); // expected-warning{{values of type 'NSInteger' should not be used as …
166 …printf("%s", (NSUInteger)0); // expected-warning{{values of type 'NSUInteger' should not be used a…
167 …printf("%s", (SInt32)0); // expected-warning{{values of type 'SInt32' should not be used as format…
168 …printf("%s", (UInt32)0); // expected-warning{{values of type 'UInt32' should not be used as format…