Lines Matching full:time
29 * <code>VTimeZone</code> instance from a time zone ID supported by <code>TimeZone</code>.
32 * from RFC2445 VTIMEZONE data stream, which allows you to calculate time
84 * Create a <code>VTimeZone</code> instance by the time zone ID.
85 * @param ID The time zone ID, such as America/New_York
86 * @return A <code>VTimeZone</code> object initialized by the time zone ID,
93 * Create a <code>VTimeZone</code> instance using a basic time zone.
94 * @param basicTZ The basic time zone instance
96 * @return A <code>VTimeZone</code> object initialized by the basic time zone.
148 * Writes RFC2445 VTIMEZONE data for this time zone
156 * Writes RFC2445 VTIMEZONE data for this time zone applicalbe
157 * for dates after the specified start time.
167 * Some common iCalendar implementations can only handle a single time
168 * zone property or a pair of standard and daylight time properties using
171 * produced by this method can be used only for calculating time zone offset
173 * @param time The date used for rule extraction.
178 void writeSimple(UDate time, UnicodeString& result, UErrorCode& status) const;
190 * to GMT to get local time in this time zone, taking daylight savings time into
192 * whether daylight savings time is in effect and needs to be figured into the offset
193 * that is returned (in other words, what is the adjusted GMT offset in this time zone
194 * at this particular date and time?). For the time zones produced by createTimeZone(),
196 * and time fields are local standard time.
199 * which returns both the raw and the DST offset for a given time. This method
207 * @param millis The reference date's milliseconds in day, local standard time
209 * @return The offset in milliseconds to add to GMT to get local time.
216 * Gets the time zone offset, for current date, modified in case of
217 * daylight savings. This is the offset to add *to* UTC to get local time.
220 * which returns both the raw and the DST offset for a given time. This method
228 * @param millis The reference date's milliseconds in day, local standard time
231 * @return The offset in milliseconds to add to GMT to get local time.
239 * Returns the time zone raw and GMT offset for the given moment
240 * in time. Upon return, local-millis = GMT-millis + rawOffset +
245 * @param date moment in time for which to return offsets, in
247 * time or local wall time, depending on `local'.
248 * @param local if true, `date' is local wall time; otherwise it
249 * is in GMT time.
254 * total offset between local and GMT time. If DST is not in
265 * to GMT to get local time, before taking daylight savings time into account).
267 * @param offsetMillis The new raw GMT offset for this time zone.
274 * to GMT to get local time, before taking daylight savings time into account).
282 * Queries if this time zone uses daylight savings time.
283 * @return true if this time zone uses daylight savings time,
290 * Queries if the given date is in daylight savings time in
291 * this time zone.
293 * deletes it each time it is called. This is a deprecated method
298 * @return true if the given date is in daylight savings time,
315 * Gets the first time zone transition after the base time.
316 * @param base The base time.
317 * @param inclusive Whether the base time is inclusive or not.
318 * @param result Receives the first transition after the base time.
325 * Gets the most recent time zone transition before the base time.
326 * @param base The base time.
327 * @param inclusive Whether the base time is inclusive or not.
328 * @param result Receives the most recent transition before the base time.
335 * Returns the number of <code>TimeZoneRule</code>s which represents time transitions,
336 * for this time zone, that is, all <code>TimeZoneRule</code>s for this time zone except
339 * @return The number of <code>TimeZoneRule</code>s representing time transitions.
346 * which represent time transitions for this time zone. On successful return,
350 * rule instance held by this time zone instance. Therefore, after this time zone
373 void writeSimple(UDate time, VTZWriter& writer, UErrorCode& status) const;
384 int32_t fromOffset, int32_t toOffset, UDate time, UBool withRDATE,