Lines Matching defs:digitCount
21 * Changed DigitCount to int per code review.
2253 int digitCount=0;
2293 if((digitCount>0) || digit!=0 || j==(l-1)) {
2294 digitCount++;
2297 digitCount=-1;
2308 digitCount=-1; // fail - fall through to slow parse
2316 && (digitCount>0)) { // and have at least one digit
2318 printf("PP -> %d, good = [%s] digitcount=%d, fGroupingSize=%d fGroupingSize2=%d!\n", j, parsedNum.data(), digitCount, fGroupingSize, fGroupingSize2);
2334 printf("Fall through: j=%d, l=%d, digitCount=%d\n", j, l, digitCount);
2454 // We have to track digitCount ourselves, because digits.fCount will
2456 int32_t digitCount = 0;
2519 if (digit > 0 || digitCount > 0 || sawDecimal) {
2520 digitCount += 1;
2670 if (!sawDigit && digitCount == 0) {