Home | History | Annotate | Download | only in i18n

Lines Matching defs:until

60 static const UChar ICAL_UNTIL[] = {0x55, 0x4E, 0x54, 0x49, 0x4C, 0}; /* "UNTIL" */
378 * until time defined by UNTIL attribute or MIN_MILLIS if not available
381 int32_t* dom, int32_t& domCount, UDate& until, UErrorCode& status) {
390 until = MIN_MILLIS;
426 until = parseDateTimeString(value, 0, status);
542 UDate until;
544 parseRRULE(rrule, month, dayOfWeek, nthDayOfWeek, days, daysCount, until, status);
623 // If UNTIL is newer than previous one, use the one
624 if (tmp_until > until) {
625 until = tmp_until;
695 if (until != MIN_MILLIS) {
697 Grego::timeToFields(until, endYear, endMonth, endDOM, endDOW, endDOY, endMID);
1979 // Update until time
2030 // Update until time
2367 // Note: When a rule is separated into two, UNTIL attribute needs to be
2369 // only for final rules, which does not have the UNTIL attribute
2371 MAX_MILLIS /* Do not use UNTIL */, fromOffset, status);
2387 MAX_MILLIS /* Do not use UNTIL */, fromOffset, status);
2480 * Write the final time zone rule using RRULE, with no UNTIL attribute
2622 * Append the UNTIL attribute after RRULE line
2625 VTimeZone::appendUNTIL(VTZWriter& writer, const UnicodeString& until, UErrorCode& status) const {
2629 if (until.length() > 0) {
2633 writer.write(until);