OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kFormat4
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/Sema/
format-strings-no-fixit.c
27
const char
kFormat4
[] = "%hhs";
28
printf(
kFormat4
, "a");
54
// CHECK: const char
kFormat4
[] = "%hhs";
55
// CHECK: printf(
kFormat4
, "a");
format-strings-scanf.c
64
const char
kFormat4
[] = "%lp"; // expected-note{{format string is defined here}}}
65
scanf(
kFormat4
, &i); // expected-warning {{length modifier 'l' results in undefined behavior or no effect with 'p' conversion specifier}}
format-strings.c
466
const char
kFormat4
[] = "%y"; // expected-note{{format string is defined here}}
467
printf(
kFormat4
, 5); // expected-warning{{invalid conversion specifier 'y'}}
Completed in 206 milliseconds