Home | History | Annotate | Download | only in i18n

Lines Matching full:time

38  * Creates a vzone from the given time zone ID.
39 * @param ID The time zone ID, such as America/New_York
41 * @return A vzone object initialized by the time zone ID,
126 * Writes RFC2445 VTIMEZONE data for this time zone
136 * Writes RFC2445 VTIMEZONE data for this time zone applicalbe
137 * for dates after the specified start time.
149 * Some common iCalendar implementations can only handle a single time
150 * zone property or a pair of standard and daylight time properties using
153 * produced by this method can be used only for calculating time zone offset
156 * @param time The date used for rule extraction.
161 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& status);
165 * to GMT to get local time in this time zone, taking daylight savings time into
167 * whether daylight savings time is in effect and needs to be figured into the offset
168 * that is returned (in other words, what is the adjusted GMT offset in this time zone
169 * at this particular date and time?). For the time zones produced by createTimeZone(),
171 * and time fields are local standard time.
174 * which returns both the raw and the DST offset for a given time. This method
183 * @param millis The reference date's milliseconds in day, local standard time
185 * @return The offset in milliseconds to add to GMT to get local time.
192 * Gets the time zone offset, for current date, modified in case of
193 * daylight savings. This is the offset to add *to* UTC to get local time.
196 * which returns both the raw and the DST offset for a given time. This method
205 * @param millis The reference date's milliseconds in day, local standard time
208 * @return The offset in milliseconds to add to GMT to get local time.
216 * Returns the time zone raw and GMT offset for the given moment
217 * in time. Upon return, local-millis = GMT-millis + rawOffset +
223 * @param date moment in time for which to return offsets, in
225 * time or local wall time, depending on `local'.
226 * @param local if true, `date' is local wall time; otherwise it
227 * is in GMT time.
232 * total offset between local and GMT time. If DST is not in
243 * to GMT to get local time, before taking daylight savings time into account).
246 * @param offsetMillis The new raw GMT offset for this time zone.
253 * to GMT to get local time, before taking daylight savings time into account).
262 * Queries if this time zone uses daylight savings time.
264 * @return true if this time zone uses daylight savings time,
271 * Queries if the given date is in daylight savings time in
272 * this time zone.
274 * deletes it each time it is called. This is a deprecated method
280 * @return true if the given date is in daylight savings time,
298 * Gets the first time zone transition after the base time.
300 * @param base The base time.
301 * @param inclusive Whether the base time is inclusive or not.
302 * @param result Receives the first transition after the base time.
309 * Gets the most recent time zone transition before the base time.
311 * @param base The base time.
312 * @param inclusive Whether the base time is inclusive or not.
313 * @param result Receives the most recent transition before the base time.
320 * Returns the number of <code>TimeZoneRule</code>s which represents time transitions,
321 * for this time zone, that is, all <code>TimeZoneRule</code>s for this time zone except
325 * @return The number of <code>TimeZoneRule</code>s representing time transitions.