Home | History | Annotate | Download | only in unicode

Lines Matching defs:FormattedNumber

279 class FormattedNumber;
1791 * @return A FormattedNumber object; call .toString() to get the string.
1794 FormattedNumber formatInt(int64_t value, UErrorCode &status) const;
1804 * @return A FormattedNumber object; call .toString() to get the string.
1807 FormattedNumber formatDouble(double value, UErrorCode &status) const;
1820 * @return A FormattedNumber object; call .toString() to get the string.
1823 FormattedNumber formatDecimal(StringPiece value, UErrorCode &status) const;
1860 FormattedNumber formatImpl(impl::NumberFormatterResults *results, UErrorCode &status) const;
1876 class U_I18N_API FormattedNumber : public UMemory {
1935 * Destruct an instance of FormattedNumber, cleaning up any memory it might own.
1938 ~FormattedNumber();
1947 explicit FormattedNumber(impl::NumberFormatterResults *results)
1950 explicit FormattedNumber(UErrorCode errorCode)