Home | History | Annotate | Download | only in i18n

Lines Matching full:time

187  * Convert date/time to RFC2445 Date-Time form #1 DATE WITH LOCAL TIME
189 static UnicodeString& getDateTimeString(UDate time, UnicodeString& str) {
191 Grego::timeToFields(time, year, month, dom, dow, doy, mid);
213 * Convert date/time to RFC2445 Date-Time form #2 DATE WITH UTC TIME
215 static UnicodeString& getUTCDateTimeString(UDate time, UnicodeString& str) {
216 getDateTimeString(time, str);
222 * Parse RFC2445 Date-Time form #1 DATE WITH LOCAL TIME and
223 * #2 DATE WITH UTC TIME
241 // charcter "T" must be used for separating date and time
277 // Calculate the time
278 UDate time = Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY;
279 time += (hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE + sec * U_MILLIS_PER_SECOND);
281 time -= offset;
283 return time;
378 * until time defined by UNTIL attribute or MIN_MILLIS if not available
555 // BYMONTH and BYDAY must be set at the same time
735 // as the transition time
1167 VTimeZone::writeSimple(UDate time, UnicodeString& result, UErrorCode& status) /*const*/ {
1170 writeSimple(time, writer, status);
1365 UDate firstStart = MAX_MILLIS; // the earliest rule start time
1499 // create a time zone rule
1529 // start time
1549 // If this is STD, assume the time before this transtion
1776 // Extract rules applicable to dates after the start time
1832 VTimeZone::writeSimple(UDate time, VTZWriter& writer, UErrorCode& status) /*const*/ {
1843 getSimpleRulesNear(time, initial, std, dst, status);
1862 appendMillis(time, *icutzprop);
1974 // Update until time
2025 // Update until time
2065 basictz.getOffset(0.0/*any time*/, FALSE, raw, dst, status);
2213 * Write a single start time
2217 int32_t fromOffset, int32_t toOffset, UDate time, UBool withRDATE,
2222 beginZoneProps(writer, isDst, zonename, fromOffset, toOffset, time, status);
2230 writer.write(getDateTimeString(time + fromOffset, timestr));
2465 * Write the final time zone rule using RRULE, with no UNTIL attribute
2481 // If the rule's mills in a day is out of range, adjust start time.