Home | History | Annotate | Download | only in iotest

Lines Matching refs:TestSPrintFormat

358 #define TestSPrintFormat(uFormat, uValue, cFormat, cValue) \
389 TestSPrintFormat("%8S", abcUChars, "%8s", abcChars);
390 TestSPrintFormat("%-8S", abcUChars, "%-8s", abcChars);
391 TestSPrintFormat("%.2S", abcUChars, "%.2s", abcChars); /* strlen is 3 */
393 TestSPrintFormat("%8s", abcChars, "%8s", abcChars);
394 TestSPrintFormat("%-8s", abcChars, "%-8s", abcChars);
395 TestSPrintFormat("%.2s", abcChars, "%.2s", abcChars); /* strlen is 3 */
397 TestSPrintFormat("%8c", (char)'e', "%8c", (char)'e');
398 TestSPrintFormat("%-8c", (char)'e', "%-8c", (char)'e');
400 TestSPrintFormat("%8C", (UChar)0x65, "%8c", (char)'e');
401 TestSPrintFormat("%-8C", (UChar)0x65, "%-8c", (char)'e');
403 TestSPrintFormat("%f", 1.23456789, "%f", 1.23456789);
404 TestSPrintFormat("%f", 12345.6789, "%f", 12345.6789);
405 TestSPrintFormat("%f", 123456.789, "%f", 123456.789);
406 TestSPrintFormat("%f", 1234567.89, "%f", 1234567.89);
407 TestSPrintFormat("%10f", 1.23456789, "%10f", 1.23456789);
408 TestSPrintFormat("%-10f", 1.23456789, "%-10f", 1.23456789);
409 TestSPrintFormat("%10f", 123.456789, "%10f", 123.456789);
410 TestSPrintFormat("%10.4f", 123.456789, "%10.4f", 123.456789);
411 TestSPrintFormat("%-10f", 123.456789, "%-10f", 123.456789);
413 /* TestSPrintFormat("%g", 12345.6789, "%g", 12345.6789);
414 TestSPrintFormat("%g", 123456.789, "%g", 123456.789);
415 TestSPrintFormat("%g", 1234567.89, "%g", 1234567.89);
416 TestSPrintFormat
417 TestSPrintFormat("%G", 1234567.89, "%G", 1234567.89);*/
418 TestSPrintFormat("%10g", 1.23456789, "%10g", 1.23456789);
419 TestSPrintFormat("%10.4g", 1.23456789, "%10.4g", 1.23456789);
420 TestSPrintFormat("%-10g", 1.23456789, "%-10g", 1.23456789);
421 TestSPrintFormat("%10g", 123.456789, "%10g", 123.456789);
422 TestSPrintFormat("%-10g", 123.456789, "%-10g", 123.456789);
424 TestSPrintFormat("%8x", 123456, "%8x", 123456);
425 TestSPrintFormat("%-8x", 123456, "%-8x", 123456);
426 TestSPrintFormat("%08x", 123456, "%08x", 123456);
428 TestSPrintFormat("%8X", 123456, "%8X", 123456);
429 TestSPrintFormat("%-8X", 123456, "%-8X", 123456);
430 TestSPrintFormat("%08X", 123456, "%08X", 123456);
431 TestSPrintFormat("%#x", 123456, "%#x", 123456);
432 TestSPrintFormat("%#x", -123456, "%#x", -123456);
434 TestSPrintFormat("%8o", 123456, "%8o", 123456);
435 TestSPrintFormat("%-8o", 123456, "%-8o", 123456);
436 TestSPrintFormat("%08o", 123456, "%08o", 123456);
437 TestSPrintFormat("%#o", 123, "%#o", 123);
438 TestSPrintFormat("%#o", -123, "%#o", -123);
440 TestSPrintFormat("%8u", 123456, "%8u", 123456);
441 TestSPrintFormat("%-8u", 123456, "%-8u", 123456);
442 TestSPrintFormat("%08u", 123456, "%08u", 123456);
443 TestSPrintFormat("%8u", -123456, "%8u", -123456);
444 TestSPrintFormat("%-8u", -123456, "%-8u", -123456);
445 TestSPrintFormat("%.5u", 123456, "%.5u", 123456);
446 TestSPrintFormat("%.6u", 123456, "%.6u", 123456);
447 TestSPrintFormat("%.7u", 123456, "%.7u", 123456);
449 TestSPrintFormat("%8d", 123456, "%8d", 123456);
450 TestSPrintFormat("%-8d", 123456, "%-8d", 123456);
451 TestSPrintFormat("%08d", 123456, "%08d", 123456);
452 TestSPrintFormat("% d", 123456, "% d", 123456);
453 TestSPrintFormat("% d", -123456, "% d", -123456);
455 TestSPrintFormat("%8i", 123456, "%8i", 123456);
456 TestSPrintFormat("%-8i", 123456, "%-8i", 123456);
457 TestSPrintFormat("%08i", 123456, "%08i", 123456);
461 TestSPrintFormat("%-#12x", 123, "%-#12x", 123);
462 TestSPrintFormat("%-#12x", -123, "%-#12x", -123);
463 TestSPrintFormat("%#12x", 123, "%#12x", 123);
464 TestSPrintFormat("%#12x", -123, "%#12x", -123);
466 TestSPrintFormat("%-+12d", 123, "%-+12d", 123);
467 TestSPrintFormat("%-+12d", -123, "%-+12d", -123);
468 TestSPrintFormat("%- 12d", 123, "%- 12d", 123);
469 TestSPrintFormat("%- 12d", -123, "%- 12d", -123);
470 TestSPrintFormat("%+12d", 123, "%+12d", 123);
471 TestSPrintFormat("%+12d", -123, "%+12d", -123);
472 TestSPrintFormat("% 12d", 123, "% 12d", 123);
473 TestSPrintFormat("% 12d", -123, "% 12d", -123);
474 TestSPrintFormat("%12d", 123, "%12d", 123);
475 TestSPrintFormat("%12d", -123, "%12d", -123);
476 TestSPrintFormat("%.12d", 123, "%.12d", 123);
477 TestSPrintFormat("%.12d", -123, "%.12d", -123);
479 TestSPrintFormat("%-+12.1f", 1.234, "%-+12.1f", 1.234);
480 TestSPrintFormat("%-+12.1f", -1.234, "%-+12.1f", -1.234);
481 TestSPrintFormat("%- 12.10f", 1.234, "%- 12.10f", 1.234);
482 TestSPrintFormat("%- 12.1f", -1.234, "%- 12.1f", -1.234);
483 TestSPrintFormat("%+12.1f", 1.234, "%+12.1f", 1.234);
484 TestSPrintFormat("%+12.1f", -1.234, "%+12.1f", -1.234);
485 TestSPrintFormat("% 12.1f", 1.234, "% 12.1f", 1.234);
486 TestSPrintFormat("% 12.1f", -1.234, "% 12.1f", -1.234);
487 TestSPrintFormat("%12.1f", 1.234, "%12.1f", 1.234);
488 TestSPrintFormat("%12.1f", -1.234, "%12.1f", -1.234);
489 TestSPrintFormat("%.2f", 1.234, "%.2f", 1.234);
490 TestSPrintFormat("%.2f", -1.234, "%.2f", -1.234);
491 TestSPrintFormat("%3f", 1.234, "%3f", 1.234);
492 TestSPrintFormat("%3f", -1.234, "%3f", -1.234);
504 #undef TestSPrintFormat