Searched defs:TimeZoneRule (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/unicode/
H A Dtzrule.h28 * <code>TimeZoneRule</code> is a class representing a rule for time zone.
29 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name,
34 class U_I18N_API TimeZoneRule : public UObject { class in inherits:UObject
40 virtual ~TimeZoneRule();
43 * Clone this TimeZoneRule object polymorphically. The caller owns the result and
48 virtual TimeZoneRule* clone(void) const = 0;
51 * Return true if the given <code>TimeZoneRule</code> objects are semantically equal. Objects
54 * @return true if the given <code>TimeZoneRule</code> objects are semantically equal.
57 virtual UBool operator==(const TimeZoneRule& that) const;
60 * Return true if the given <code>TimeZoneRule</cod
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DTimeZoneRule.java16 * <code>TimeZoneRule</code> is an abstract class representing a rule for time zone.
17 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name,
25 public abstract class TimeZoneRule implements Serializable { class in inherits:Serializable
34 * Constructs a <code>TimeZoneRule</code> with the name, the GMT offset of its
42 public TimeZoneRule(String name, int rawOffset, int dstSavings) { method in class:TimeZoneRule
78 * When two <code>TimeZoneRule</code> objects differ only its names, this method returns
81 * @param other The <code>TimeZoneRule</code> object to be compared with.
82 * @return true if the other <code>TimeZoneRule</code> is the same as this one.
84 public boolean isEquivalentTo(TimeZoneRule other) {
148 * Returns if this <code>TimeZoneRule</cod
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeZoneRule.java15 * <code>TimeZoneRule</code> is an abstract class representing a rule for time zone.
16 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name,
24 public abstract class TimeZoneRule implements Serializable { class in inherits:Serializable
33 * Constructs a <code>TimeZoneRule</code> with the name, the GMT offset of its
43 public TimeZoneRule(String name, int rawOffset, int dstSavings) { method in class:TimeZoneRule
85 * When two <code>TimeZoneRule</code> objects differ only its names, this method returns
88 * @param other The <code>TimeZoneRule</code> object to be compared with.
89 * @return true if the other <code>TimeZoneRule</code> is the same as this one.
93 public boolean isEquivalentTo(TimeZoneRule other) {
165 * Returns if this <code>TimeZoneRule</cod
[all...]

Completed in 1702 milliseconds