Lines Matching refs:warning
103 // FIXME: We should be warning about a use-after-free here, but we
114 CFDateGetAbsoluteTime(date); // no-warning
118 t = CFDateGetAbsoluteTime(date); // no-warning
133 CFDateRef date = CFDateCreate(0, t); // no-warning
149 s.x = CFDateCreate(0, t); // no-warning
157 s.x = CFDateCreate(0, t); // no-warning
163 [[NSNumber alloc] initWithInt:1], // no-warning
164 [[NSNumber alloc] initWithInt:2], // no-warning
165 [[NSNumber alloc] initWithInt:3], // no-warning
166 [[NSNumber alloc] initWithInt:4], // no-warning
167 [[NSNumber alloc] initWithInt:5] // no-warning
176 [[NSNumber alloc] initWithInt:1], // expected-warning{{leak}}
177 [[NSNumber alloc] initWithInt:2], // expected-warning{{leak}}
178 [[NSNumber alloc] initWithInt:3], // expected-warning{{leak}}
179 [[NSNumber alloc] initWithInt:4], // expected-warning{{leak}}
180 [[NSNumber alloc] initWithInt:5] // expected-warning{{leak}}
186 [[NSNumber alloc] initWithInt:1], // no-warning
187 [[NSNumber alloc] initWithInt:2], // no-warning
188 [[NSNumber alloc] initWithInt:3], // no-warning
189 [[NSNumber alloc] initWithInt:4], // no-warning
190 [[NSNumber alloc] initWithInt:5] // no-warning
203 [[NSNumber alloc] initWithInt:1], // no-warning
204 [[NSNumber alloc] initWithInt:2], // no-warning
205 [[NSNumber alloc] initWithInt:3], // no-warning
206 [[NSNumber alloc] initWithInt:4], // no-warning
207 [[NSNumber alloc] initWithInt:5] // no-warning
210 …itWithObjects: &numbers[0] count:sizeof(numbers) / sizeof(numbers[0])]; // expected-warning{{leak}}
228 CFRelease(values[1]); // no-warning
246 tc->myIvar = temp; // no-warning
248 temp = tc->myIvar; // no-warning
252 [tc release]; // no-warning
255 *p = 0xDEADBEEF; // expected-warning{{null}}