Lines Matching full:has
42 …printf("%u", x); // expected-warning{{format specifies type 'unsigned int' but the argument has ty… in test_printf_int()
43 …printf("%x", x); // expected-warning{{format specifies type 'unsigned int' but the argument has ty… in test_printf_int()
48 …printf("%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'unsig… in test_printf_unsigned()
56 …, x); // expected-warning{{format specifies type 'unsigned long' but the argument has type 'long'}} in test_printf_long()
57 …, x); // expected-warning{{format specifies type 'unsigned long' but the argument has type 'long'}} in test_printf_long()
62 …printf("%ld", x); // expected-warning{{format specifies type 'long' but the argument has type 'uns… in test_printf_unsigned_long()
70 …xpected-warning{{format specifies type 'unsigned long long' but the argument has type 'long long'}} in test_printf_long_long()
71 …xpected-warning{{format specifies type 'unsigned long long' but the argument has type 'long long'}} in test_printf_long_long()
76 …printf("%lld", x); // expected-warning{{format specifies type 'long long' but the argument has typ… in test_printf_unsigned_long_long()
88 …printf("%u", x); // expected-warning{{format specifies type 'unsigned int' but the argument has un… in test_printf_enum_int()
89 …printf("%x", x); // expected-warning{{format specifies type 'unsigned int' but the argument has un… in test_printf_enum_int()
99 …printf("%d", x); // expected-warning{{format specifies type 'int' but the argument has underlying … in test_printf_enum_unsigned()
113 …/ expected-warning{{format specifies type 'unsigned long' but the argument has underlying type 'lo… in test_printf_enum_long()
114 …/ expected-warning{{format specifies type 'unsigned long' but the argument has underlying type 'lo… in test_printf_enum_long()
123 …printf("%ld", x); // expected-warning{{format specifies type 'long' but the argument has underlyin… in test_printf_enum_unsigned_long()
139 …scanf("%u", x); // expected-warning{{format specifies type 'unsigned int *' but the argument has t… in test_scanf_int()
140 …scanf("%x", x); // expected-warning{{format specifies type 'unsigned int *' but the argument has t… in test_scanf_int()
144 …scanf("%d", x); // expected-warning{{format specifies type 'int *' but the argument has type 'unsi… in test_scanf_unsigned()
151 …; // expected-warning{{format specifies type 'unsigned long *' but the argument has type 'long *'}} in test_scanf_long()
152 …; // expected-warning{{format specifies type 'unsigned long *' but the argument has type 'long *'}} in test_scanf_long()
156 …scanf("%ld", x); // expected-warning{{format specifies type 'long *' but the argument has type 'un… in test_scanf_unsigned_long()
163 …ted-warning{{format specifies type 'unsigned long long *' but the argument has type 'long long *'}} in test_scanf_longlong()
164 …ted-warning{{format specifies type 'unsigned long long *' but the argument has type 'long long *'}} in test_scanf_longlong()
168 …scanf("%lld", x); // expected-warning{{format specifies type 'long long *' but the argument has ty… in test_scanf_unsigned_longlong()
175 …scanf("%u", x); // expected-warning{{format specifies type 'unsigned int *' but the argument has t… in test_scanf_enum_int()
176 …scanf("%x", x); // expected-warning{{format specifies type 'unsigned int *' but the argument has t… in test_scanf_enum_int()
181 …scanf("%d", x); // expected-warning{{format specifies type 'int *' but the argument has type 'enum… in test_scanf_enum_unsigned()
188 …expected-warning{{format specifies type 'unsigned long *' but the argument has type 'enum enum_lon… in test_scanf_enum_long()
189 …expected-warning{{format specifies type 'unsigned long *' but the argument has type 'enum enum_lon… in test_scanf_enum_long()
193 …scanf("%ld", x); // expected-warning{{format specifies type 'long *' but the argument has type 'en… in test_scanf_enum_unsigned_long()