OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kFormat1
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/Sema/
format-strings-no-fixit.c
14
const char
kFormat1
[] = "%s";
15
printf(
kFormat1
, 5);
41
// CHECK: const char
kFormat1
[] = "%s";
42
// CHECK: printf(
kFormat1
, 5);
format-strings-scanf.c
56
const char
kFormat1
[] = "%00d"; // expected-note{{format string is defined here}}}
57
scanf(
kFormat1
, i); // expected-warning{{zero field width in scanf format string is unused}}
format-strings.c
458
const char
kFormat1
[] = "%d %d \n"; // expected-note{{format string is defined here}}}
459
printf(
kFormat1
, 0); // expected-warning{{more '%' conversions than data arguments}}
Completed in 395 milliseconds