Searched refs:TestSPrintFormat (Results 1 – 1 of 1) sorted by relevance
/external/icu/icu4c/source/test/iotest/ |
D | strtst.c | 358 #define TestSPrintFormat(uFormat, uValue, cFormat, cValue) \ macro 389 TestSPrintFormat("%8S", abcUChars, "%8s", abcChars); in TestSprintfFormat() 390 TestSPrintFormat("%-8S", abcUChars, "%-8s", abcChars); in TestSprintfFormat() 391 TestSPrintFormat("%.2S", abcUChars, "%.2s", abcChars); /* strlen is 3 */ in TestSprintfFormat() 393 TestSPrintFormat("%8s", abcChars, "%8s", abcChars); in TestSprintfFormat() 394 TestSPrintFormat("%-8s", abcChars, "%-8s", abcChars); in TestSprintfFormat() 395 TestSPrintFormat("%.2s", abcChars, "%.2s", abcChars); /* strlen is 3 */ in TestSprintfFormat() 397 TestSPrintFormat("%8c", (char)'e', "%8c", (char)'e'); in TestSprintfFormat() 398 TestSPrintFormat("%-8c", (char)'e', "%-8c", (char)'e'); in TestSprintfFormat() 400 TestSPrintFormat("%8C", (UChar)0x65, "%8c", (char)'e'); in TestSprintfFormat() [all …]
|