Lines Matching full:has
98 …fscanf(f, "%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type… in test_variants()
99 …sscanf(buf, "%ld", i); // expected-warning{{format specifies type 'long *' but the argument has ty… in test_variants()
100 …my_scanf("%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type … in test_variants()
111 …scanf("%[abc]", ip); // expected-warning{{format specifies type 'char *' but the argument has type… in test_scanlist()
126 …scanf("%as", sp); // expected-warning{{format specifies type 'float *' but the argument has type '… in test_alloc_extension()
127 …scanf("%aS", lsp); // expected-warning{{format specifies type 'float *' but the argument has type … in test_alloc_extension()
128 …scanf("%a[bcd]", sp); // expected-warning{{format specifies type 'float *' but the argument has ty… in test_alloc_extension()
140 …scanf("%ms", fp); // expected-warning{{format specifies type 'char **' but the argument has type '… in test_alloc_extension()
141 …ning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has type 'float *'}} in test_alloc_extension()
142 …scanf("%mc", fp); // expected-warning{{format specifies type 'char **' but the argument has type '… in test_alloc_extension()
143 …ning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has type 'float *'}} in test_alloc_extension()
144 …scanf("%m[abc]", fp); // expected-warning{{format specifies type 'char **' but the argument has ty… in test_alloc_extension()
148 …scanf("%qd", x); // expected-warning{{format specifies type 'long long *' but the argument has typ… in test_quad()
153 …scanf("%n", (void*)0); // expected-warning{{format specifies type 'int *' but the argument has typ… in test_writeback()
154 …scanf("%n %c", x, x); // expected-warning{{format specifies type 'char *' but the argument has typ… in test_writeback()
159 …)0); // expected-warning{{format specifies type 'signed char *' but the argument has type 'int *'}} in test_writeback()
163 …scanf("%hn", (int*)0); // expected-warning{{format specifies type 'short *' but the argument has t… in test_writeback()
167 …scanf("%n", (char*)0); // expected-warning{{format specifies type 'int *' but the argument has typ… in test_writeback()
171 …scanf("%ln", (int*)0); // expected-warning{{format specifies type 'long *' but the argument has ty… in test_writeback()
175 …t*)0); // expected-warning{{format specifies type 'long long *' but the argument has type 'int *'}} in test_writeback()
179 …t*)0); // expected-warning{{format specifies type 'long long *' but the argument has type 'int *'}} in test_writeback()
186 …scanf("%d", cip); // expected-warning{{format specifies type 'int *' but the argument has type 'co… in test_qualifiers()
187 …scanf("%n", cip); // expected-warning{{format specifies type 'int *' but the argument has type 'co… in test_qualifiers()
188 …scanf("%s", ccp); // expected-warning{{format specifies type 'char *' but the argument has type 'c… in test_qualifiers()
189 …scanf("%d", cvip); // expected-warning{{format specifies type 'int *' but the argument has type 'c… in test_qualifiers()
198 …scanf("%d", (cip_t)0); // expected-warning{{format specifies type 'int *' but the argument has typ… in test_qualifiers()
207 …-warning-re{{format specifies type 'size_t *' (aka '{{.+}}') but the argument has type 'double *'}} in test_size_types()
213 …warning-re{{format specifies type 'ssize_t *' (aka '{{.+}}') but the argument has type 'double *'}} in test_size_types()
219 …warning-re{{format specifies type 'ssize_t *' (aka '{{.+}}') but the argument has type 'double *'}} in test_size_types()
228 …{format specifies type 'unsigned ptrdiff_t *' (aka '{{.+}}') but the argument has type 'double *'}} in test_ptrdiff_t_types()
234 …rning-re{{format specifies type 'ptrdiff_t *' (aka '{{.+}}') but the argument has type 'double *'}} in test_ptrdiff_t_types()
240 …rning-re{{format specifies type 'ptrdiff_t *' (aka '{{.+}}') but the argument has type 'double *'}} in test_ptrdiff_t_types()
266 …scanf("%hhd", &i); // expected-warning{{format specifies type 'char *' but the argument has type '… in test_promotion()
267 …scanf("%hd", &i); // expected-warning{{format specifies type 'short *' but the argument has type '… in test_promotion()
272 …scanf("%hd", &sc); // expected-warning{{format specifies type 'short *' but the argument has type … in test_promotion()
273 …scanf("%hd", &uc); // expected-warning{{format specifies type 'short *' but the argument has type … in test_promotion()
274 …scanf("%d", &sc); // expected-warning{{format specifies type 'int *' but the argument has type 'si… in test_promotion()
275 …scanf("%d", &uc); // expected-warning{{format specifies type 'int *' but the argument has type 'un… in test_promotion()
277 …scanf("%hhd", &ss); // expected-warning{{format specifies type 'char *' but the argument has type … in test_promotion()
278 …scanf("%hhd", &us); // expected-warning{{format specifies type 'char *' but the argument has type … in test_promotion()
281 …scanf("%d", &ss); // expected-warning{{format specifies type 'int *' but the argument has type 'sh… in test_promotion()
282 …scanf("%d", &us); // expected-warning{{format specifies type 'int *' but the argument has type 'un… in test_promotion()
285 …scanf("%ld", &i); // expected-warning{{format specifies type 'long *' but the argument has type 'i… in test_promotion()
286 …scanf("%lld", &i); // expected-warning{{format specifies type 'long long *' but the argument has t… in test_promotion()
287 …scanf("%ld", &sc); // expected-warning{{format specifies type 'long *' but the argument has type '… in test_promotion()
288 …scanf("%lld", &sc); // expected-warning{{format specifies type 'long long *' but the argument has … in test_promotion()
289 …scanf("%ld", &uc); // expected-warning{{format specifies type 'long *' but the argument has type '… in test_promotion()
290 …scanf("%lld", &uc); // expected-warning{{format specifies type 'long long *' but the argument has … in test_promotion()
291 … expected-warning{{format specifies type 'unsigned long long *' but the argument has type 'int *'}} in test_promotion()
298 …scanf("%s", i); // expected-warning{{format specifies type 'char *' but the argument has type 'int… in test_promotion()
304 …scanf("%hhd", vp); // expected-warning{{format specifies type 'char *' but the argument has type '… in test_promotion()