Lines Matching refs:time
12 * \brief C++ API: Time zone transition
27 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
28 * An instance has a time of transition and rules for both before and after the transition.
34 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after
37 * @param time The time of transition in milliseconds since the base time.
38 * @param from The time zone rule used before the transition.
39 * @param to The time zone rule used after the transition.
42 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to);
97 * Returns the time of transition in milliseconds.
98 * @return The time of the transition in milliseconds since the 1970 Jan 1 epoch time.
104 * Sets the time of transition in milliseconds.
105 * @param time The time of the transition in milliseconds since the 1970 Jan 1 epoch time.
108 void setTime(UDate time);
112 * @return The time zone rule used after the transition.
120 * @param from The time zone rule used before the transition.
128 * @param from The time zone rule used before the transition.
136 * @param to The time zone rule used after the transition.
144 * @param to The time zone rule used after the transition.
151 * @return The time zone rule used after the transition.