Home
last modified time | relevance | path

Searched refs:RuleBasedTimeZone (Results 1 – 25 of 35) sorted by relevance

12

/external/icu/icu4c/source/i18n/
Drbtz.cpp54 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(RuleBasedTimeZone) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() argument
56 RuleBasedTimeZone::RuleBasedTimeZone(const UnicodeString& id, InitialTimeZoneRule* initialRule) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
61 RuleBasedTimeZone::RuleBasedTimeZone(const RuleBasedTimeZone& source) in RuleBasedTimeZone() function in RuleBasedTimeZone
72 RuleBasedTimeZone::~RuleBasedTimeZone() { in ~RuleBasedTimeZone()
77 RuleBasedTimeZone&
78 RuleBasedTimeZone::operator=(const RuleBasedTimeZone& right) { in operator =()
92 RuleBasedTimeZone::operator==(const TimeZone& that) const { in operator ==()
100 RuleBasedTimeZone *rbtz = (RuleBasedTimeZone*)&that; in operator ==()
112 RuleBasedTimeZone::operator!=(const TimeZone& that) const { in operator !=()
117 RuleBasedTimeZone::addTransitionRule(TimeZoneRule* rule, UErrorCode& status) { in addTransitionRule()
[all …]
Ddangical.cpp116RuleBasedTimeZone* dangiCalZoneAstroCalc = new RuleBasedTimeZone(UNICODE_STRING_SIMPLE("KOREA_ZONE… in initDangiCalZoneAstroCalc()
Dvtzone.cpp1357 RuleBasedTimeZone *rbtz = NULL; in parse()
1597 rbtz = new RuleBasedTimeZone(tzid, initialRule); in parse()
1791 RuleBasedTimeZone rbtz(tzid, initial); in write()
1854 RuleBasedTimeZone rbtz(tzid, initial); in writeSimple()
Dtzgnames.cpp632 || dynamic_cast<RuleBasedTimeZone *>(tmptz) != NULL in formatGenericNonLocationName()
/external/icu/icu4c/source/i18n/unicode/
Drbtz.h36 class U_I18N_API RuleBasedTimeZone : public BasicTimeZone {
47 RuleBasedTimeZone(const UnicodeString& id, InitialTimeZoneRule* initialRule);
54 RuleBasedTimeZone(const RuleBasedTimeZone& source);
60 virtual ~RuleBasedTimeZone();
67 RuleBasedTimeZone& operator=(const RuleBasedTimeZone& right);
/external/icu/android_icu4j/src/main/java/android/icu/util/
DDangiCalendar.java77 RuleBasedTimeZone tz = new RuleBasedTimeZone("KOREA_ZONE", initialTimeZone);
DRuleBasedTimeZone.java26 public class RuleBasedTimeZone extends BasicTimeZone { class
44 public RuleBasedTimeZone(String id, InitialTimeZoneRule initialRule) { in RuleBasedTimeZone() method in RuleBasedTimeZone
232 if (!(other instanceof RuleBasedTimeZone)) { in hasSameRules()
236 RuleBasedTimeZone otherRBTZ = (RuleBasedTimeZone)other; in hasSameRules()
758 RuleBasedTimeZone tz = (RuleBasedTimeZone)super.cloneAsThawed(); in cloneAsThawed()
DVTimeZone.java263 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tz.getID(), (InitialTimeZoneRule)rules[0]); in write()
295 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tz.getID(), (InitialTimeZoneRule)rules[0]); in writeSimple()
740 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tzid, initialRule); in parse()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DDangiCalendar.java75 RuleBasedTimeZone tz = new RuleBasedTimeZone("KOREA_ZONE", initialTimeZone);
DRuleBasedTimeZone.java25 public class RuleBasedTimeZone extends BasicTimeZone { class
45 public RuleBasedTimeZone(String id, InitialTimeZoneRule initialRule) { in RuleBasedTimeZone() method in RuleBasedTimeZone
250 if (!(other instanceof RuleBasedTimeZone)) { in hasSameRules()
254 RuleBasedTimeZone otherRBTZ = (RuleBasedTimeZone)other; in hasSameRules()
786 RuleBasedTimeZone tz = (RuleBasedTimeZone)super.cloneAsThawed(); in cloneAsThawed()
DVTimeZone.java286 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tz.getID(), (InitialTimeZoneRule)rules[0]); in write()
320 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tz.getID(), (InitialTimeZoneRule)rules[0]); in writeSimple()
771 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tzid, initialRule); in parse()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
DTimeZoneRuleTest.java30 import android.icu.util.RuleBasedTimeZone;
67 RuleBasedTimeZone rbtz1 = new RuleBasedTimeZone("RBTZ1", ir); in TestSimpleRuleBasedTimeZone()
82 RuleBasedTimeZone rbtz2 = new RuleBasedTimeZone("RBTZ2", ir); in TestSimpleRuleBasedTimeZone()
93 RuleBasedTimeZone rbtz3 = new RuleBasedTimeZone("RBTZ3", ir); in TestSimpleRuleBasedTimeZone()
124 RuleBasedTimeZone rbtz1c = (RuleBasedTimeZone)rbtz1.clone(); in TestSimpleRuleBasedTimeZone()
218 RuleBasedTimeZone rbtz = new RuleBasedTimeZone("EST5EDT", ir); in TestHistoricalRuleBasedTimeZone()
289 RuleBasedTimeZone rbtzc = (RuleBasedTimeZone)rbtz.clone(); in TestHistoricalRuleBasedTimeZone()
365 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tz.getID() + "(RBTZ)", in TestRBTZTransition()
1819 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(id, initialRule); in TestT8943()
DTimeZoneTest.java35 import android.icu.util.RuleBasedTimeZone;
1935 new RuleBasedTimeZone("rbtz", new InitialTimeZoneRule("rbtz0", 0, 0)), in TestFreezable()
1952 … new RuleBasedTimeZone("frz_rbtz", new InitialTimeZoneRule("frz_rbtz0", 3600000, 0)).freeze(), in TestFreezable()
1996 …if (!(thawedZones[i] instanceof RuleBasedTimeZone)) { // RuleBasedTimeZone does not supprot set… in checkThawed()
2038 } else if (thawedZones[i] instanceof RuleBasedTimeZone) { in checkThawed()
2039 RuleBasedTimeZone rbtz = (RuleBasedTimeZone)thawedZones[i]; in checkThawed()
2101 …if (!(frozenZones[i] instanceof RuleBasedTimeZone)) { // RuleBasedTimeZone does not supprot set… in checkFrozen()
2142 } else if (frozenZones[i] instanceof RuleBasedTimeZone) { in checkFrozen()
2143 RuleBasedTimeZone rbtz = (RuleBasedTimeZone)frozenZones[i]; in checkFrozen()
2189 RuleBasedTimeZone rbtz = createRBTZ((BasicTimeZone)tz, current); in TestObservesDaylightTime()
[all …]
DTimeZoneOffsetLocalTest.java24 import android.icu.util.RuleBasedTimeZone;
127 RuleBasedTimeZone rbPT = new RuleBasedTimeZone("Rule based Pacific Time", ir); in TestGetOffsetAroundTransition()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
DTimeZoneRuleTest.java29 import com.ibm.icu.util.RuleBasedTimeZone;
66 RuleBasedTimeZone rbtz1 = new RuleBasedTimeZone("RBTZ1", ir); in TestSimpleRuleBasedTimeZone()
81 RuleBasedTimeZone rbtz2 = new RuleBasedTimeZone("RBTZ2", ir); in TestSimpleRuleBasedTimeZone()
92 RuleBasedTimeZone rbtz3 = new RuleBasedTimeZone("RBTZ3", ir); in TestSimpleRuleBasedTimeZone()
123 RuleBasedTimeZone rbtz1c = (RuleBasedTimeZone)rbtz1.clone(); in TestSimpleRuleBasedTimeZone()
217 RuleBasedTimeZone rbtz = new RuleBasedTimeZone("EST5EDT", ir); in TestHistoricalRuleBasedTimeZone()
288 RuleBasedTimeZone rbtzc = (RuleBasedTimeZone)rbtz.clone(); in TestHistoricalRuleBasedTimeZone()
364 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(tz.getID() + "(RBTZ)", in TestRBTZTransition()
1818 RuleBasedTimeZone rbtz = new RuleBasedTimeZone(id, initialRule); in TestT8943()
DTimeZoneTest.java34 import com.ibm.icu.util.RuleBasedTimeZone;
1934 new RuleBasedTimeZone("rbtz", new InitialTimeZoneRule("rbtz0", 0, 0)), in TestFreezable()
1951 … new RuleBasedTimeZone("frz_rbtz", new InitialTimeZoneRule("frz_rbtz0", 3600000, 0)).freeze(), in TestFreezable()
1995 …if (!(thawedZones[i] instanceof RuleBasedTimeZone)) { // RuleBasedTimeZone does not supprot set… in checkThawed()
2037 } else if (thawedZones[i] instanceof RuleBasedTimeZone) { in checkThawed()
2038 RuleBasedTimeZone rbtz = (RuleBasedTimeZone)thawedZones[i]; in checkThawed()
2100 …if (!(frozenZones[i] instanceof RuleBasedTimeZone)) { // RuleBasedTimeZone does not supprot set… in checkFrozen()
2141 } else if (frozenZones[i] instanceof RuleBasedTimeZone) { in checkFrozen()
2142 RuleBasedTimeZone rbtz = (RuleBasedTimeZone)frozenZones[i]; in checkFrozen()
2188 RuleBasedTimeZone rbtz = createRBTZ((BasicTimeZone)tz, current); in TestObservesDaylightTime()
[all …]
DTimeZoneOffsetLocalTest.java23 import com.ibm.icu.util.RuleBasedTimeZone;
126 RuleBasedTimeZone rbPT = new RuleBasedTimeZone("Rule based Pacific Time", ir); in TestGetOffsetAroundTransition()
/external/icu/icu4c/source/test/intltest/
Dtzrulets.cpp172 RuleBasedTimeZone *rbtz1 = new RuleBasedTimeZone("RBTZ1", ir->clone()); in TestSimpleRuleBasedTimeZone()
197 RuleBasedTimeZone *rbtz2 = new RuleBasedTimeZone("RBTZ2", ir->clone()); in TestSimpleRuleBasedTimeZone()
218 RuleBasedTimeZone *rbtz3 = new RuleBasedTimeZone("RBTZ3", ir->clone()); in TestSimpleRuleBasedTimeZone()
268 RuleBasedTimeZone *rbtz1c = (RuleBasedTimeZone*)rbtz1->clone(); in TestSimpleRuleBasedTimeZone()
377 RuleBasedTimeZone rbtz0("RBTZ1", ir->clone()); in TestSimpleRuleBasedTimeZone()
438 RuleBasedTimeZone *rbtz = new RuleBasedTimeZone("EST5EDT", ir); in TestHistoricalRuleBasedTimeZone()
550 RuleBasedTimeZone *rbtzc = (RuleBasedTimeZone*)rbtz->clone(); in TestHistoricalRuleBasedTimeZone()
667 RuleBasedTimeZone *rbtz = new RuleBasedTimeZone(*tzid, initial->clone()); in TestRBTZTransition()
1167 RuleBasedTimeZone *rbtz = new RuleBasedTimeZone(*tzid, initial); in TestGetSimpleRules()
2630 RuleBasedTimeZone *rbtz = new RuleBasedTimeZone(id, initialRule); in TestT8943()
Dtzoffloc.cpp148 RuleBasedTimeZone *rbPT = new RuleBasedTimeZone("Rule based Pacific Time", ir); in TestGetOffsetAroundTransition()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
DSerializableTestUtility.java51 import android.icu.util.RuleBasedTimeZone;
262 RuleBasedTimeZone ruleBasedTimeZones[] = new RuleBasedTimeZone[2]; in getTestObjects()
267 ruleBasedTimeZones[0] = new RuleBasedTimeZone("GMT-5", ir); in getTestObjects()
271 ruleBasedTimeZones[1] = new RuleBasedTimeZone("US_East", ir); in getTestObjects()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
DSerializableTestUtility.java50 import com.ibm.icu.util.RuleBasedTimeZone;
261 RuleBasedTimeZone ruleBasedTimeZones[] = new RuleBasedTimeZone[2]; in getTestObjects()
266 ruleBasedTimeZones[0] = new RuleBasedTimeZone("GMT-5", ir); in getTestObjects()
270 ruleBasedTimeZones[1] = new RuleBasedTimeZone("US_East", ir); in getTestObjects()
/external/icu/icu4j/tools/build/
Dicu4j50.api3.gz12;ICU4J 50.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j51.api3.gz
Dicu4j52.api3.gz
Dicu4j49.api3.gz

12