Home
last modified time | relevance | path

Searched refs:testPrintf (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_format_interceptor_test.cpp259 testPrintf("%5$d", 0); in TEST()
260 testPrintf("%.*5$d", 0); in TEST()
263 testPrintf("%0-m", 0); in TEST()
266 testPrintf("%*n", 1, I); in TEST()
267 testPrintf("%*.10n", 1, I); in TEST()
271 testPrintf("%.3s", 1, 3); in TEST()
275 testPrintf("%.*n", 1, I); in TEST()
276 testPrintf("%10.*n", 1, I); in TEST()
279 testPrintf("%.*s", 1, 0); in TEST()
282 testPrintf("%ls", 1, 0); in TEST()
[all …]
/llvm-project-15.0.7/clang/test/Sema/
H A Dformat-strings-darwin.c42 void testPrintf(short x, long y) { in testPrintf() function