Home | History | Annotate | Download | only in intltest

Lines Matching defs:decimalPoint

642         const char *decimalPoint = strchr(num, '.');
643 int fractionDigitCount = decimalPoint == NULL ? 0 : (num + strlen(num) - 1) - decimalPoint;
644 int fractionDigits = fractionDigitCount == 0 ? 0 : atoi(decimalPoint + 1);