Lines Matching full:printf

4 int printf(const char *restrict, ...);
45printf("%r", s); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
46printf("%r", us); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
47printf("%r", i); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
48printf("%r", ui); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
49printf("%r", l); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
50printf("%r", ul); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
51printf("%r", fl); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
52printf("%r", d); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
53printf("%r", c); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
54printf("%r", uc); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_invalid_args()
58 printf("%r", f); in test_fixed_point_specifiers()
59 printf("%R", uf); in test_fixed_point_specifiers()
60 printf("%k", a); in test_fixed_point_specifiers()
61 printf("%K", ua); in test_fixed_point_specifiers()
64printf("%r", sf); // expected-warning{{format specifies type '_Fract' but the argument has type … in test_fixed_point_specifiers()
65printf("%r", lf); // expected-warning{{format specifies type '_Fract' but the argument has type … in test_fixed_point_specifiers()
66printf("%R", usf); // expected-warning{{format specifies type 'unsigned _Fract' but the argument … in test_fixed_point_specifiers()
67printf("%R", ulf); // expected-warning{{format specifies type 'unsigned _Fract' but the argument … in test_fixed_point_specifiers()
68printf("%k", sa); // expected-warning{{format specifies type '_Accum' but the argument has type … in test_fixed_point_specifiers()
69printf("%k", la); // expected-warning{{format specifies type '_Accum' but the argument has type … in test_fixed_point_specifiers()
70printf("%K", usa); // expected-warning{{format specifies type 'unsigned _Accum' but the argument … in test_fixed_point_specifiers()
71printf("%K", ula); // expected-warning{{format specifies type 'unsigned _Accum' but the argument … in test_fixed_point_specifiers()
74printf("%r", uf); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_fixed_point_specifiers()
75printf("%R", f); // expected-warning{{format specifies type 'unsigned _Fract' but the argument h… in test_fixed_point_specifiers()
76printf("%k", ua); // expected-warning{{format specifies type '_Accum' but the argument has type '… in test_fixed_point_specifiers()
77printf("%K", a); // expected-warning{{format specifies type 'unsigned _Accum' but the argument h… in test_fixed_point_specifiers()
80printf("%r", a); // expected-warning{{format specifies type '_Fract' but the argument has type '… in test_fixed_point_specifiers()
81printf("%R", ua); // expected-warning{{format specifies type 'unsigned _Fract' but the argument h… in test_fixed_point_specifiers()
82printf("%k", f); // expected-warning{{format specifies type '_Accum' but the argument has type '… in test_fixed_point_specifiers()
83printf("%K", uf); // expected-warning{{format specifies type 'unsigned _Accum' but the argument h… in test_fixed_point_specifiers()
86 printf("%r", sat_f); in test_fixed_point_specifiers()
87 printf("%R", sat_uf); in test_fixed_point_specifiers()
88 printf("%k", sat_a); in test_fixed_point_specifiers()
89 printf("%K", sat_ua); in test_fixed_point_specifiers()
93 printf("%hr", sf); in test_length_modifiers_and_flags()
94 printf("%lr", lf); in test_length_modifiers_and_flags()
95 printf("%hR", usf); in test_length_modifiers_and_flags()
96 printf("%lR", ulf); in test_length_modifiers_and_flags()
97 printf("%hk", sa); in test_length_modifiers_and_flags()
98 printf("%lk", la); in test_length_modifiers_and_flags()
99 printf("%hK", usa); in test_length_modifiers_and_flags()
100 printf("%lK", ula); in test_length_modifiers_and_flags()
102 printf("%hr", sat_sf); in test_length_modifiers_and_flags()
103 printf("%lr", sat_lf); in test_length_modifiers_and_flags()
104 printf("%hR", sat_usf); in test_length_modifiers_and_flags()
105 printf("%lR", sat_ulf); in test_length_modifiers_and_flags()
106 printf("%hk", sat_sa); in test_length_modifiers_and_flags()
107 printf("%lk", sat_la); in test_length_modifiers_and_flags()
108 printf("%hK", sat_usa); in test_length_modifiers_and_flags()
109 printf("%lK", sat_ula); in test_length_modifiers_and_flags()
111 printf("%10r", f); in test_length_modifiers_and_flags()
112 printf("%10.10r", f); in test_length_modifiers_and_flags()
113 printf("%010r", f); in test_length_modifiers_and_flags()
114 printf("%-10r", f); in test_length_modifiers_and_flags()
115 printf("%.10r", f); in test_length_modifiers_and_flags()
116 printf("%+r", f); in test_length_modifiers_and_flags()
117 printf("% r", f); in test_length_modifiers_and_flags()
118 printf("%#r", f); in test_length_modifiers_and_flags()
119 printf("%#.r", f); in test_length_modifiers_and_flags()
120 printf("%#.0r", f); in test_length_modifiers_and_flags()
123printf("%zr", f); // expected-warning{{length modifier 'z' results in undefined behavior or no e… in test_length_modifiers_and_flags()
124printf("%llr", f); // expected-warning{{length modifier 'll' results in undefined behavior or no … in test_length_modifiers_and_flags()
125printf("%hhr", f); // expected-warning{{length modifier 'hh' results in undefined behavior or no … in test_length_modifiers_and_flags()
128printf("%+hR", usf); // expected-warning{{flag '+' results in undefined behavior with 'R' convers… in test_length_modifiers_and_flags()
129printf("%+R", uf); // expected-warning{{flag '+' results in undefined behavior with 'R' convers… in test_length_modifiers_and_flags()
130printf("%+lR", ulf); // expected-warning{{flag '+' results in undefined behavior with 'R' convers… in test_length_modifiers_and_flags()
131printf("%+hK", usa); // expected-warning{{flag '+' results in undefined behavior with 'K' convers… in test_length_modifiers_and_flags()
132printf("%+K", ua); // expected-warning{{flag '+' results in undefined behavior with 'K' convers… in test_length_modifiers_and_flags()
133printf("%+lK", ula); // expected-warning{{flag '+' results in undefined behavior with 'K' convers… in test_length_modifiers_and_flags()
134printf("% hR", usf); // expected-warning{{flag ' ' results in undefined behavior with 'R' convers… in test_length_modifiers_and_flags()
135printf("% R", uf); // expected-warning{{flag ' ' results in undefined behavior with 'R' convers… in test_length_modifiers_and_flags()
136printf("% lR", ulf); // expected-warning{{flag ' ' results in undefined behavior with 'R' convers… in test_length_modifiers_and_flags()
137printf("% hK", usa); // expected-warning{{flag ' ' results in undefined behavior with 'K' convers… in test_length_modifiers_and_flags()
138printf("% K", ua); // expected-warning{{flag ' ' results in undefined behavior with 'K' convers… in test_length_modifiers_and_flags()
139printf("% lK", ula); // expected-warning{{flag ' ' results in undefined behavior with 'K' convers… in test_length_modifiers_and_flags()
143 printf("%k", i); // expected-warning{{invalid conversion specifier 'k'}} in test_fixed_point_specifiers_no_printf()
144 printf("%K", i); // expected-warning{{invalid conversion specifier 'K'}} in test_fixed_point_specifiers_no_printf()
145 printf("%r", i); // expected-warning{{invalid conversion specifier 'r'}} in test_fixed_point_specifiers_no_printf()
146 printf("%R", i); // expected-warning{{invalid conversion specifier 'R'}} in test_fixed_point_specifiers_no_printf()