Home | History | Annotate | Download | only in i18n

Lines Matching refs:endValue

2504     int32_t endValue = getMinimum(field);
2507 if (fieldValue == endValue) {
2534 } while (fieldValue >= endValue);
3456 int32_t Calendar::getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const
3459 fprintf(stderr, "getActualHelper(%d,%d .. %d, %s)\n", field, startValue, endValue, u_errorName(status));
3461 if (startValue == endValue) {
3466 int32_t delta = (endValue > startValue) ? 1 : -1;
3508 } while (startValue != endValue);