Lines Matching full:endvalue
2733 int32_t endValue = getMinimum(field);
2736 if (fieldValue == endValue) {
2763 } while (fieldValue >= endValue);
3699 int32_t Calendar::getActualHelper(UCalendarDateFields field, int32_t startValue, int32_t endValue, UErrorCode &status) const
3702 fprintf(stderr, "getActualHelper(%d,%d .. %d, %s)\n", field, startValue, endValue, u_errorName(status));
3704 if (startValue == endValue) {
3709 int32_t delta = (endValue > startValue) ? 1 : -1;
3751 } while (startValue != endValue);