Lines Matching full:but

63 …scanf(kFormat3, &i); // expected-warning {{format specifies type 'unsigned short *' but the argume…  in pr9751()
72 …fscanf(f, "%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type… in test_variants()
73 …sscanf(buf, "%ld", i); // expected-warning{{format specifies type 'long *' but the argument has ty… in test_variants()
74 …my_scanf("%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type … in test_variants()
85 …scanf("%[abc]", ip); // expected-warning{{format specifies type 'char *' but the argument has type… in test_scanlist()
100 …scanf("%as", sp); // expected-warning{{format specifies type 'float *' but the argument has type '… in test_alloc_extension()
101 …scanf("%aS", lsp); // expected-warning{{format specifies type 'float *' but the argument has type … in test_alloc_extension()
102 …scanf("%a[bcd]", sp); // expected-warning{{format specifies type 'float *' but the argument has ty… in test_alloc_extension()
114 …scanf("%ms", fp); // expected-warning{{format specifies type 'char **' but the argument has type '… in test_alloc_extension()
115 … expected-warning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has ty… in test_alloc_extension()
116 …scanf("%mc", fp); // expected-warning{{format specifies type 'char **' but the argument has type '… in test_alloc_extension()
117 … expected-warning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has ty… in test_alloc_extension()
118 …scanf("%m[abc]", fp); // expected-warning{{format specifies type 'char **' but the argument has ty… in test_alloc_extension()
122 …scanf("%qd", x); // expected-warning{{format specifies type 'long long *' but the argument has typ… in test_quad()
127 …scanf("%n", (void*)0); // expected-warning{{format specifies type 'int *' but the argument has typ… in test_writeback()
128 …scanf("%n %c", x, x); // expected-warning{{format specifies type 'char *' but the argument has typ… in test_writeback()
133 …scanf("%hhn", (int*)0); // expected-warning{{format specifies type 'signed char *' but the argumen… in test_writeback()
137 …scanf("%hn", (int*)0); // expected-warning{{format specifies type 'short *' but the argument has t… in test_writeback()
141 …scanf("%n", (char*)0); // expected-warning{{format specifies type 'int *' but the argument has typ… in test_writeback()
145 …scanf("%ln", (int*)0); // expected-warning{{format specifies type 'long *' but the argument has ty… in test_writeback()
149 …scanf("%lln", (int*)0); // expected-warning{{format specifies type 'long long *' but the argument … in test_writeback()
153 …scanf("%qn", (int*)0); // expected-warning{{format specifies type 'long long *' but the argument h… in test_writeback()
160 …scanf("%d", cip); // expected-warning{{format specifies type 'int *' but the argument has type 'co… in test_qualifiers()
161 …scanf("%n", cip); // expected-warning{{format specifies type 'int *' but the argument has type 'co… in test_qualifiers()
162 …scanf("%s", ccp); // expected-warning{{format specifies type 'char *' but the argument has type 'c… in test_qualifiers()
163 …scanf("%d", cvip); // expected-warning{{format specifies type 'int *' but the argument has type 'c… in test_qualifiers()
172 …scanf("%d", (cip_t)0); // expected-warning{{format specifies type 'int *' but the argument has typ… in test_qualifiers()