Lines Matching refs:TestSPrintFormat
361 #define TestSPrintFormat(uFormat, uValue, cFormat, cValue) \ macro
392 TestSPrintFormat("%8S", abcUChars, "%8s", abcChars); in TestSprintfFormat()
393 TestSPrintFormat("%-8S", abcUChars, "%-8s", abcChars); in TestSprintfFormat()
394 TestSPrintFormat("%.2S", abcUChars, "%.2s", abcChars); /* strlen is 3 */ in TestSprintfFormat()
396 TestSPrintFormat("%8s", abcChars, "%8s", abcChars); in TestSprintfFormat()
397 TestSPrintFormat("%-8s", abcChars, "%-8s", abcChars); in TestSprintfFormat()
398 TestSPrintFormat("%.2s", abcChars, "%.2s", abcChars); /* strlen is 3 */ in TestSprintfFormat()
400 TestSPrintFormat("%8c", (char)'e', "%8c", (char)'e'); in TestSprintfFormat()
401 TestSPrintFormat("%-8c", (char)'e', "%-8c", (char)'e'); in TestSprintfFormat()
403 TestSPrintFormat("%8C", (UChar)0x65, "%8c", (char)'e'); in TestSprintfFormat()
404 TestSPrintFormat("%-8C", (UChar)0x65, "%-8c", (char)'e'); in TestSprintfFormat()
406 TestSPrintFormat("%f", 1.23456789, "%f", 1.23456789); in TestSprintfFormat()
407 TestSPrintFormat("%f", 12345.6789, "%f", 12345.6789); in TestSprintfFormat()
408 TestSPrintFormat("%f", 123456.789, "%f", 123456.789); in TestSprintfFormat()
409 TestSPrintFormat("%f", 1234567.89, "%f", 1234567.89); in TestSprintfFormat()
410 TestSPrintFormat("%10f", 1.23456789, "%10f", 1.23456789); in TestSprintfFormat()
411 TestSPrintFormat("%-10f", 1.23456789, "%-10f", 1.23456789); in TestSprintfFormat()
412 TestSPrintFormat("%10f", 123.456789, "%10f", 123.456789); in TestSprintfFormat()
413 TestSPrintFormat("%10.4f", 123.456789, "%10.4f", 123.456789); in TestSprintfFormat()
414 TestSPrintFormat("%-10f", 123.456789, "%-10f", 123.456789); in TestSprintfFormat()
421 TestSPrintFormat("%10g", 1.23456789, "%10g", 1.23456789); in TestSprintfFormat()
422 TestSPrintFormat("%10.4g", 1.23456789, "%10.4g", 1.23456789); in TestSprintfFormat()
423 TestSPrintFormat("%-10g", 1.23456789, "%-10g", 1.23456789); in TestSprintfFormat()
424 TestSPrintFormat("%10g", 123.456789, "%10g", 123.456789); in TestSprintfFormat()
425 TestSPrintFormat("%-10g", 123.456789, "%-10g", 123.456789); in TestSprintfFormat()
427 TestSPrintFormat("%8x", 123456, "%8x", 123456); in TestSprintfFormat()
428 TestSPrintFormat("%-8x", 123456, "%-8x", 123456); in TestSprintfFormat()
429 TestSPrintFormat("%08x", 123456, "%08x", 123456); in TestSprintfFormat()
431 TestSPrintFormat("%8X", 123456, "%8X", 123456); in TestSprintfFormat()
432 TestSPrintFormat("%-8X", 123456, "%-8X", 123456); in TestSprintfFormat()
433 TestSPrintFormat("%08X", 123456, "%08X", 123456); in TestSprintfFormat()
434 TestSPrintFormat("%#x", 123456, "%#x", 123456); in TestSprintfFormat()
435 TestSPrintFormat("%#x", -123456, "%#x", -123456); in TestSprintfFormat()
437 TestSPrintFormat("%8o", 123456, "%8o", 123456); in TestSprintfFormat()
438 TestSPrintFormat("%-8o", 123456, "%-8o", 123456); in TestSprintfFormat()
439 TestSPrintFormat("%08o", 123456, "%08o", 123456); in TestSprintfFormat()
440 TestSPrintFormat("%#o", 123, "%#o", 123); in TestSprintfFormat()
441 TestSPrintFormat("%#o", -123, "%#o", -123); in TestSprintfFormat()
443 TestSPrintFormat("%8u", 123456, "%8u", 123456); in TestSprintfFormat()
444 TestSPrintFormat("%-8u", 123456, "%-8u", 123456); in TestSprintfFormat()
445 TestSPrintFormat("%08u", 123456, "%08u", 123456); in TestSprintfFormat()
446 TestSPrintFormat("%8u", -123456, "%8u", -123456); in TestSprintfFormat()
447 TestSPrintFormat("%-8u", -123456, "%-8u", -123456); in TestSprintfFormat()
448 TestSPrintFormat("%.5u", 123456, "%.5u", 123456); in TestSprintfFormat()
449 TestSPrintFormat("%.6u", 123456, "%.6u", 123456); in TestSprintfFormat()
450 TestSPrintFormat("%.7u", 123456, "%.7u", 123456); in TestSprintfFormat()
452 TestSPrintFormat("%8d", 123456, "%8d", 123456); in TestSprintfFormat()
453 TestSPrintFormat("%-8d", 123456, "%-8d", 123456); in TestSprintfFormat()
454 TestSPrintFormat("%08d", 123456, "%08d", 123456); in TestSprintfFormat()
455 TestSPrintFormat("% d", 123456, "% d", 123456); in TestSprintfFormat()
456 TestSPrintFormat("% d", -123456, "% d", -123456); in TestSprintfFormat()
458 TestSPrintFormat("%8i", 123456, "%8i", 123456); in TestSprintfFormat()
459 TestSPrintFormat("%-8i", 123456, "%-8i", 123456); in TestSprintfFormat()
460 TestSPrintFormat("%08i", 123456, "%08i", 123456); in TestSprintfFormat()
464 TestSPrintFormat("%-#12x", 123, "%-#12x", 123); in TestSprintfFormat()
465 TestSPrintFormat("%-#12x", -123, "%-#12x", -123); in TestSprintfFormat()
466 TestSPrintFormat("%#12x", 123, "%#12x", 123); in TestSprintfFormat()
467 TestSPrintFormat("%#12x", -123, "%#12x", -123); in TestSprintfFormat()
469 TestSPrintFormat("%-+12d", 123, "%-+12d", 123); in TestSprintfFormat()
470 TestSPrintFormat("%-+12d", -123, "%-+12d", -123); in TestSprintfFormat()
471 TestSPrintFormat("%- 12d", 123, "%- 12d", 123); in TestSprintfFormat()
472 TestSPrintFormat("%- 12d", -123, "%- 12d", -123); in TestSprintfFormat()
473 TestSPrintFormat("%+12d", 123, "%+12d", 123); in TestSprintfFormat()
474 TestSPrintFormat("%+12d", -123, "%+12d", -123); in TestSprintfFormat()
475 TestSPrintFormat("% 12d", 123, "% 12d", 123); in TestSprintfFormat()
476 TestSPrintFormat("% 12d", -123, "% 12d", -123); in TestSprintfFormat()
477 TestSPrintFormat("%12d", 123, "%12d", 123); in TestSprintfFormat()
478 TestSPrintFormat("%12d", -123, "%12d", -123); in TestSprintfFormat()
479 TestSPrintFormat("%.12d", 123, "%.12d", 123); in TestSprintfFormat()
480 TestSPrintFormat("%.12d", -123, "%.12d", -123); in TestSprintfFormat()
482 TestSPrintFormat("%-+12.1f", 1.234, "%-+12.1f", 1.234); in TestSprintfFormat()
483 TestSPrintFormat("%-+12.1f", -1.234, "%-+12.1f", -1.234); in TestSprintfFormat()
484 TestSPrintFormat("%- 12.10f", 1.234, "%- 12.10f", 1.234); in TestSprintfFormat()
485 TestSPrintFormat("%- 12.1f", -1.234, "%- 12.1f", -1.234); in TestSprintfFormat()
486 TestSPrintFormat("%+12.1f", 1.234, "%+12.1f", 1.234); in TestSprintfFormat()
487 TestSPrintFormat("%+12.1f", -1.234, "%+12.1f", -1.234); in TestSprintfFormat()
488 TestSPrintFormat("% 12.1f", 1.234, "% 12.1f", 1.234); in TestSprintfFormat()
489 TestSPrintFormat("% 12.1f", -1.234, "% 12.1f", -1.234); in TestSprintfFormat()
490 TestSPrintFormat("%12.1f", 1.234, "%12.1f", 1.234); in TestSprintfFormat()
491 TestSPrintFormat("%12.1f", -1.234, "%12.1f", -1.234); in TestSprintfFormat()
492 TestSPrintFormat("%.2f", 1.234, "%.2f", 1.234); in TestSprintfFormat()
493 TestSPrintFormat("%.2f", -1.234, "%.2f", -1.234); in TestSprintfFormat()
494 TestSPrintFormat("%3f", 1.234, "%3f", 1.234); in TestSprintfFormat()
495 TestSPrintFormat("%3f", -1.234, "%3f", -1.234); in TestSprintfFormat()
507 #undef TestSPrintFormat