Home | History | Annotate | Download | only in i18n

Lines Matching defs:endValue

2497     int32_t endValue = getMinimum(field);
2500 if (fieldValue == endValue) {
2527 } while (fieldValue >= endValue);
3449 int32_t Calendar::getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const
3452 fprintf(stderr, "getActualHelper(%d,%d .. %d, %s)\n", field, startValue, endValue, u_errorName(status));
3454 if (startValue == endValue) {
3459 int32_t delta = (endValue > startValue) ? 1 : -1;
3501 } while (startValue != endValue);