Searched defs:getFixedDecimal (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/icu/source/i18n/
H A Ddecimfmt.cpp1025 DecimalFormat::getFixedDecimal(double number, UErrorCode &status) const { function in class:DecimalFormat
1042 // printf("getFixedDecimal(%g): taking fast path.\n", number);
1049 result = getFixedDecimal(digits, status);
1060 DecimalFormat::getFixedDecimal(const Formattable &number, UErrorCode &status) const { function in class:DecimalFormat
1072 return getFixedDecimal(clonedDL, status);
1077 return getFixedDecimal(number.getDouble(status), status);
1089 return getFixedDecimal(number.getDouble(status), status);
1100 return getFixedDecimal(digits, status);
1112 DecimalFormat::getFixedDecimal(DigitList &number, UErrorCode &status) const { function in class:DecimalFormat

Completed in 329 milliseconds