Home | History | Annotate | Download | only in i18n

Lines Matching refs:source

649 DigitList::set(int32_t source)
651 set((int64_t)source);
652 fDouble = source;
662 DigitList::set(int64_t source)
665 formatBase10(source, str);
669 fDouble = (double)source;
684 DigitList::set(const StringPiece &source, UErrorCode &status) {
691 int32_t numDigits = source.length();
703 uprv_decNumberFromString(fDecNumber, source.data(), &fContext);
713 * @param source Value to be converted.
716 DigitList::set(double source)
722 sprintf(rep, "%+1.*e", MAX_DBL_DIGITS - 1, source);
728 fDouble = source;