Home | History | Annotate | Download | only in unicode

Lines Matching defs:SimpleTimeZone

31  * \brief C++ API: SimpleTimeZone is a concrete subclass of TimeZone.
46 * <code>SimpleTimeZone</code> is a concrete subclass of <code>TimeZone</code>
51 * <code>dayOfWeekInMonth</code> to indicate that <code>SimpleTimeZone</code> should
61 class U_I18N_API SimpleTimeZone: public BasicTimeZone {
86 SimpleTimeZone(const SimpleTimeZone& source);
93 SimpleTimeZone& operator=(const SimpleTimeZone& right);
99 virtual ~SimpleTimeZone();
105 * @param that The SimpleTimeZone object to be compared with.
113 * Constructs a SimpleTimeZone with the given raw GMT offset and time zone ID,
116 * SimpleTimeZone directly with this constructor.
123 SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString& ID);
126 * Construct a SimpleTimeZone with the given raw GMT offset, time zone ID,
129 * SimpleTimeZone(rawOffset, ID) instead. Normally, you should use
131 * SimpleTimeZone directly with this constructor.
138 * @param rawOffsetGMT The new SimpleTimeZone's raw GMT offset
139 * @param ID The new SimpleTimeZone's time zone ID.
160 SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString& ID,
167 * Construct a SimpleTimeZone with the given raw GMT offset, time zone ID,
170 * SimpleTimeZone(rawOffset, ID) instead. Normally, you should use
172 * SimpleTimeZone directly with this constructor.
179 * @param rawOffsetGMT The new SimpleTimeZone's raw GMT offset
180 * @param ID The new SimpleTimeZone's time zone ID.
203 SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString& ID,
211 * Construct a SimpleTimeZone with the given raw GMT offset, time zone ID,
214 * SimpleTimeZone(rawOffset, ID) instead. Normally, you should use
216 * SimpleTimeZone directly with this constructor.
223 * @param rawOffsetGMT The new SimpleTimeZone's raw GMT offset
224 * @param ID The new SimpleTimeZone's time zone ID.
251 SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString& ID,
262 * not to observe daylight savings time prior to that year; SimpleTimeZone doesn't
793 SimpleTimeZone(); // default constructor not implemented
797 * @param rawOffsetGMT The new SimpleTimeZone's raw GMT offset
883 inline void SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfWeekInMonth,
889 inline void SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfMonth,
895 inline void SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfMonth,
901 inline void SimpleTimeZone::setEndRule(int32_t month, int32_t dayOfWeekInMonth,
907 inline void SimpleTimeZone::setEndRule(int32_t month, int32_t dayOfMonth,
912 inline void SimpleTimeZone::setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
918 SimpleTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffsetRef,