Home | History | Annotate | Download | only in intltest

Lines Matching defs:decimalPoint

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