Home | History | Annotate | Download | only in unicode

Lines Matching full:timezone

31  * \brief C++ API: SimpleTimeZone is a concrete subclass of TimeZone.
46 * <code>SimpleTimeZone</code> is a concrete subclass of <code>TimeZone</code>
58 * @see TimeZone
102 * Returns true if the two TimeZone objects are equal; that is, they have
110 virtual UBool operator==(const TimeZone& that) const;
115 * TimeZone::createInstance() to create a TimeZone instead of creating a
119 * @param ID The timezone ID which is obtained from
120 * TimeZone.getAvailableIDs.
127 * and times to start and end daylight savings time. To create a TimeZone that
130 * TimeZone.createInstance() to create a TimeZone instead of creating a
168 * and times to start and end daylight savings time. To create a TimeZone that
171 * TimeZone.createInstance() to create a TimeZone instead of creating a
212 * and times to start and end daylight savings time. To create a TimeZone that
215 * TimeZone.createInstance() to create a TimeZone instead of creating a
550 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add
612 * Redeclared TimeZone method. This implementation simply calls
627 * Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add
630 * @return The TimeZone's raw GMT offset.
636 * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add
664 * Queries if this TimeZone uses Daylight Savings Time.
666 * @return True if this TimeZone uses Daylight Savings Time; false otherwise.
673 * is in effect; false otherwise. If the TimeZone doesn't observe daylight savings
689 * @param other the TimeZone object to be compared with
693 UBool hasSameRules(const TimeZone& other) const;
696 * Clones TimeZone objects polymorphically. Clients are responsible for deleting
697 * the TimeZone object cloned.
699 * @return A new copy of this TimeZone object.
702 virtual TimeZone* clone(void) const;
742 * @param initial Receives the initial timezone rule
743 * @param trsrules Receives the timezone transition rules
745 * the timezone transition rules. On output, actual number of
757 * Override TimeZone Returns a unique class ID POLYMORPHICALLY. Pure virtual
861 int32_t rawOffset; // the TimeZone's raw GMT offset
862 UBool useDaylight; // flag indicating whether this TimeZone uses DST
921 TimeZone::getOffset(date, local, rawOffsetRef, dstOffsetRef, ec);