Searched refs:historicRules (Results 1 - 6 of 6) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DRuleBasedTimeZone.java31 private List<TimeZoneRule> historicRules; field in class:RuleBasedTimeZone
78 if (historicRules == null) {
79 historicRules = new ArrayList<TimeZoneRule>();
81 historicRules.add(rule);
261 if (historicRules != null && otherRBTZ.historicRules != null) {
262 if (historicRules.size() != otherRBTZ.historicRules.size()) {
265 for (TimeZoneRule rule : historicRules) {
267 for (TimeZoneRule orule : otherRBTZ.historicRules) {
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRuleBasedTimeZone.java30 private List<TimeZoneRule> historicRules; field in class:RuleBasedTimeZone
81 if (historicRules == null) {
82 historicRules = new ArrayList<TimeZoneRule>();
84 historicRules.add(rule);
279 if (historicRules != null && otherRBTZ.historicRules != null) {
280 if (historicRules.size() != otherRBTZ.historicRules.size()) {
283 for (TimeZoneRule rule : historicRules) {
285 for (TimeZoneRule orule : otherRBTZ.historicRules) {
[all...]
/external/icu/icu4c/source/i18n/
H A Dolsontz.cpp659 historicRules = NULL;
680 if (historicRules != NULL) {
682 if (historicRules[i] != NULL) {
683 delete historicRules[i];
686 uprv_free(historicRules);
770 if (historicRules == NULL) {
772 historicRules = (TimeArrayTimeZoneRule**)uprv_malloc(sizeof(TimeArrayTimeZoneRule*)*historicRuleCount);
773 if (historicRules == NULL) {
781 historicRules[i] = NULL;
784 historicRules[typeId
[all...]
H A Dolsontz.h398 TimeArrayTimeZoneRule **historicRules; member in class:OlsonTimeZone
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DOlsonTimeZone.java968 if (historicRules != null) {
983 TimeZoneRule to = historicRules[getInt(typeMapData[ttidx + 1])];
984 TimeZoneRule from = historicRules[getInt(typeMapData[ttidx])];
1019 if (historicRules != null) {
1035 TimeZoneRule to = historicRules[getInt(typeMapData[ttidx])];
1036 TimeZoneRule from = historicRules[getInt(typeMapData[ttidx-1])];
1058 if (historicRules != null) {
1059 // historicRules may contain null entries when original zoneinfo data
1061 for (int i = 0; i < historicRules.length; i++) {
1062 if (historicRules[
1106 private transient TimeArrayTimeZoneRule[] historicRules; field in class:OlsonTimeZone
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DOlsonTimeZone.java966 if (historicRules != null) {
981 TimeZoneRule to = historicRules[getInt(typeMapData[ttidx + 1])];
982 TimeZoneRule from = historicRules[getInt(typeMapData[ttidx])];
1017 if (historicRules != null) {
1033 TimeZoneRule to = historicRules[getInt(typeMapData[ttidx])];
1034 TimeZoneRule from = historicRules[getInt(typeMapData[ttidx-1])];
1056 if (historicRules != null) {
1057 // historicRules may contain null entries when original zoneinfo data
1059 for (int i = 0; i < historicRules.length; i++) {
1060 if (historicRules[
1104 private transient TimeArrayTimeZoneRule[] historicRules; field in class:OlsonTimeZone
[all...]

Completed in 567 milliseconds