Home | History | Annotate | Download | only in Sema

Lines Matching full:specifier

28   scanf("%y", i); // expected-warning{{invalid conversion specifier 'y'}}
45 scanf("%hhs", "foo"); // expected-warning{{length modifier 'hh' results in undefined behavior or no effect with 's' conversion specifier}}
46 scanf("%1$zp", &p); // expected-warning{{length modifier 'z' results in undefined behavior or no effect with 'p' conversion specifier}}
48 scanf("%#.2Lf", ld); // expected-warning{{invalid conversion specifier '#'}}
65 scanf(kFormat4, &i); // expected-warning {{length modifier 'l' results in undefined behavior or no effect with 'p' conversion specifier}}
86 scanf("%h[abc]", sp); // expected-warning{{length modifier 'h' results in undefined behavior or no effect with '[' conversion specifier}}
88 scanf("%ll[xyx]", ls); // expected-warning {{length modifier 'll' results in undefined behavior or no effect with '[' conversion specifier}}
93 scanf("%[a^]% ]", sp); // expected-warning {{invalid conversion specifier ' '}}
97 /* Make sure "%a" gets parsed as a conversion specifier for float,
111 scanf("%md", sp); // expected-warning{{length modifier 'm' results in undefined behavior or no effect with 'd' conversion specifier}}