Home | History | Annotate | Download | only in i18n

Lines Matching defs:endValue

2722     int32_t endValue = getMinimum(field);
2725 if (fieldValue == endValue) {
2752 } while (fieldValue >= endValue);
3688 int32_t Calendar::getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const
3691 fprintf(stderr, "getActualHelper(%d,%d .. %d, %s)\n", field, startValue, endValue, u_errorName(status));
3693 if (startValue == endValue) {
3698 int32_t delta = (endValue > startValue) ? 1 : -1;
3740 } while (startValue != endValue);