Home | History | Annotate | Download | only in i18n

Lines Matching refs:number

68 // If no number pattern can be located for a locale, this is the last
94 // If the maximum base 10 exponent were 4, then the largest number would
149 * Release all static memory held by Number Format.
322 NumberFormat::format(double /* unused number */,
338 NumberFormat::format(int32_t /* unused number */,
354 NumberFormat::format(int64_t /* unused number */,
368 NumberFormat::format(double number,
373 return format(number,appendTo,pos);
380 NumberFormat::format(int32_t number,
385 return format(number,appendTo,pos);
392 NumberFormat::format(int64_t number,
397 return format(number,appendTo,pos);
406 // Decimal Number format() default implementation
433 // Formats the number object and save the format
449 const Formattable* number(void) const;
453 ArgExtractor::number(void) const {
482 UnicodeString& NumberFormat::format(const DigitList &number,
492 double dnum = number.getDouble();
500 NumberFormat::format(const DigitList &number,
510 double dnum = number.getDouble();
524 const Formattable *n = arg.number();
527 // Decimal Number. We will have a DigitList available if the value was
528 // set to a decimal number, or if the value originated with a parse.
557 // Formats the number object and save the format
569 const Formattable *n = arg.number();
572 // Decimal Number
597 NumberFormat::format(int64_t number,
602 return format((int32_t)number, appendTo, pos);
618 // Formats a double number and save the result in a string.
621 NumberFormat::format(double number, UnicodeString& appendTo) const
624 return format(number, appendTo, pos);
628 // Formats a long number and save the result in a string.
631 NumberFormat::format(int32_t number, UnicodeString& appendTo) const
634 return format(number, appendTo, pos);
638 // Formats a long number and save the result in a string.
641 NumberFormat::format(int64_t number, UnicodeString& appendTo) const
644 return format(number, appendTo, pos);
708 // Create a number style NumberFormat instance with the default locale.
717 // Create a number style NumberFormat instance with the inLocale locale.
876 : ICULocaleService(UNICODE_STRING_SIMPLE("Number Format"))
1013 // Gets the maximum number of digits for the integral part for
1022 // Sets the maximum number of digits for the integral part for
1034 // Gets the minimum number of digits for the integral part for
1044 // Sets the minimum number of digits for the integral part for
1056 // Gets the maximum number of digits for the fractional part for
1066 // Sets the maximum number of digits for the fractional part for
1078 // Gets the minimum number of digits for the fractional part for
1088 // Sets the minimum number of digits for the fractional part for
1132 // Creates the NumberFormat instance of the specified style (number, currency,
1261 // Creates a DecimalFormat instance with the last resort number patterns.