Home | History | Annotate | Download | only in i18n

Lines Matching defs:digitValue

1006             int32_t digitValue = u_charDigitValue(fC.fChar);
1007 U_ASSERT(digitValue >= 0);
1008 fIntervalLow = fIntervalLow*10 + digitValue;
1021 int32_t digitValue = u_charDigitValue(fC.fChar);
1022 U_ASSERT(digitValue >= 0);
1023 fIntervalUpper = fIntervalUpper*10 + digitValue;