Searched refs:roundDigits (Results 1 – 1 of 1) sorted by relevance
2184 public static String formatNumber(double original, int roundDigits, boolean xml) { in formatNumber() argument2186 if (roundDigits != 0) { in formatNumber()2187 d = CldrUtility.roundToDecimals(original, roundDigits); in formatNumber()2190 d = CldrUtility.roundToDecimals(original, roundDigits); in formatNumber()2199 public static String formatPercent(double d, int roundDigits, boolean xml) { in formatPercent() argument2200 if (roundDigits != 0) { in formatPercent()2201 d = CldrUtility.roundToDecimals(d, roundDigits); in formatPercent()2204 nf_no_comma.setMaximumFractionDigits(roundDigits + 2); in formatPercent()2207 pf.setMaximumFractionDigits(roundDigits + 2); in formatPercent()