Home
last modified time | relevance | path

Searched refs:untilTime (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/i18n/unicode/
Dvtzone.h390 int32_t month, int32_t dayOfMonth, UDate startTime, UDate untilTime,
395 UDate startTime, UDate untilTime, UErrorCode& status) const;
399 UDate startTime, UDate untilTime, UErrorCode& status) const;
402 … UDate untilTime, int32_t fromOffset, UErrorCode& status) const;
406 UDate startTime, UDate untilTime, UErrorCode& status) const;
/external/icu/android_icu4j/src/main/java/android/icu/util/
DVTimeZone.java1043 long untilTime = MIN_TIME;
1071 untilTime = parseDateTimeString(value, 0);
1169 until[0] = untilTime;
1513 int month, int dayOfMonth, long startTime, long untilTime) throws IOException { in writeZonePropsByDOM() argument
1521 if (untilTime != MAX_TIME) { in writeZonePropsByDOM()
1522 appendUNTIL(writer, getDateTimeString(untilTime + fromOffset)); in writeZonePropsByDOM()
1533 … int month, int weekInMonth, int dayOfWeek, long startTime, long untilTime) throws IOException { in writeZonePropsByDOW() argument
1542 if (untilTime != MAX_TIME) { in writeZonePropsByDOW()
1543 appendUNTIL(writer, getDateTimeString(untilTime + fromOffset)); in writeZonePropsByDOW()
1554 … int month, int dayOfMonth, int dayOfWeek, long startTime, long untilTime) throws IOException { in writeZonePropsByDOW_GEQ_DOM() argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DVTimeZone.java1074 long untilTime = MIN_TIME;
1102 untilTime = parseDateTimeString(value, 0);
1200 until[0] = untilTime;
1544 int month, int dayOfMonth, long startTime, long untilTime) throws IOException { in writeZonePropsByDOM() argument
1552 if (untilTime != MAX_TIME) { in writeZonePropsByDOM()
1553 appendUNTIL(writer, getDateTimeString(untilTime + fromOffset)); in writeZonePropsByDOM()
1564 … int month, int weekInMonth, int dayOfWeek, long startTime, long untilTime) throws IOException { in writeZonePropsByDOW() argument
1573 if (untilTime != MAX_TIME) { in writeZonePropsByDOW()
1574 appendUNTIL(writer, getDateTimeString(untilTime + fromOffset)); in writeZonePropsByDOW()
1585 … int month, int dayOfMonth, int dayOfWeek, long startTime, long untilTime) throws IOException { in writeZonePropsByDOW_GEQ_DOM() argument
[all …]
/external/icu/icu4c/source/i18n/
Dvtzone.cpp2252 int32_t month, int32_t dayOfMonth, UDate startTime, UDate untilTime, in writeZonePropsByDOM() argument
2270 if (untilTime != MAX_MILLIS) { in writeZonePropsByDOM()
2271 appendUNTIL(writer, getDateTimeString(untilTime + fromOffset, dstr), status); in writeZonePropsByDOM()
2287 UDate startTime, UDate untilTime, UErrorCode& status) const { in writeZonePropsByDOW() argument
2306 if (untilTime != MAX_MILLIS) { in writeZonePropsByDOW()
2307 appendUNTIL(writer, getDateTimeString(untilTime + fromOffset, dstr), status); in writeZonePropsByDOW()
2323 UDate startTime, UDate untilTime, UErrorCode& status) const { in writeZonePropsByDOW_GEQ_DOM() argument
2331 month, (dayOfMonth + 6)/7, dayOfWeek, startTime, untilTime, status); in writeZonePropsByDOW_GEQ_DOM()
2338 … month, -1*((MONTHLENGTH[month] - dayOfMonth + 1)/7), dayOfWeek, startTime, untilTime, status); in writeZonePropsByDOW_GEQ_DOM()
2385 untilTime, fromOffset, status); in writeZonePropsByDOW_GEQ_DOM()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DZoneParser.java449 untilTime = new Time(l.get(6)); // fall through in ZoneLine()
481 public Time untilTime; field in ZoneParser.ZoneLine
516 lastZoneLine.untilDay, lastZoneLine.untilTime); in addTransitions()
520 …vate long resolveTime(int gmtOffset, int untilYear, int untilMonth, Day untilDay, Time untilTime) { in resolveTime() argument