Home | History | Annotate | Download | only in cintltst

Lines Matching refs:nf

14 *   06/24/99    helena      Integrated Alan's NF enhancements and Java2 bug fixes
637 static void roundingTest(UNumberFormat* nf, double x, int32_t maxFractionDigits, const char* expected)
645 unum_setAttribute(nf, UNUM_MAX_FRACTION_DIGITS, maxFractionDigits);
647 lneed=unum_formatDouble(nf, x, NULL, lneed, NULL, &status);
652 unum_formatDouble(nf, x, out, lneed+1, &pos, &status);
1035 static void roundingTest2(UNumberFormat* nf, double x, int32_t roundingMode, const char* expected)
1043 unum_setAttribute(nf, UNUM_ROUNDING_MODE, roundingMode);
1045 lneed=unum_formatDouble(nf, x, NULL, lneed, NULL, &status);
1050 unum_formatDouble(nf, x, out, lneed+1, &pos, &status);