Lines Matching refs:digit
1003 * If in "by digits" mode, fills in the substitution one decimal digit
1022 // pulling digits off the right one at a time, formatting each digit
1030 // // to true the first time we encounter a non-zero digit
1033 // int64_t digit = numberToFormat % 10;
1034 // if (digit != 0 || doZeros) {
1039 // getRuleSet()->format(digit, toInsertInto, _pos + getPos());
1059 int64_t digit = didx>=0 ? dl.getDigit(didx) - '0' : 0;
1060 getRuleSet()->format(digit, toInsertInto, _pos + getPos());
1105 // if we ARE in byDigits mode, parse the text one digit at a time
1113 int32_t digit;
1123 digit = temp.getLong(status);
1124 // digit = temp.getType() == Formattable::kLong ?
1139 digit = temp.getLong(status);
1144 dl.append((char)('0' + digit));
1145 // result += digit * p10;