Searched refs:roundDigits (Results 1 – 1 of 1) sorted by relevance
2116 public static String formatNumber(double original, int roundDigits, boolean xml) { in formatNumber() argument2118 if (roundDigits != 0) { in formatNumber()2119 d = CldrUtility.roundToDecimals(original, roundDigits); in formatNumber()2122 d = CldrUtility.roundToDecimals(original, roundDigits); in formatNumber()2131 public static String formatPercent(double d, int roundDigits, boolean xml) { in formatPercent() argument2132 if (roundDigits != 0) { in formatPercent()2133 d = CldrUtility.roundToDecimals(d, roundDigits); in formatPercent()2136 nf_no_comma.setMaximumFractionDigits(roundDigits + 2); in formatPercent()2139 pf.setMaximumFractionDigits(roundDigits + 2); in formatPercent()