/external/icu/icu4c/source/test/testdata/ |
D | zoneinfo64.txt | 27 typeOffsets:intvector { -968, 0, 0, 0 } 32 typeOffsets:intvector { -52, 0, 0, 0, 0, 1200 } 38 typeOffsets:intvector { 9288, 0, 9320, 0, 10800, 0 } 45 typeOffsets:intvector { 732, 0, 0, 0, 0, 3600, 561, 0, 3600, 0, 3600, 3600 } 51 typeOffsets:intvector { 9332, 0, 9320, 0, 10800, 0 } 58 typeOffsets:intvector { -1920, 0, -3600, 0, 0, 0 } 64 typeOffsets:intvector { 4460, 0, 3600, 0 } 69 typeOffsets:intvector { -3996, 0, -3600, 0, 0, 0 } 74 typeOffsets:intvector { -3740, 0, -3600, 0, 0, 0 } 79 typeOffsets:intvector { 8400, 0, 7200, 0 } [all …]
|
/external/icu/icu4c/source/data/misc/ |
D | zoneinfo64.txt | 25 typeOffsets:intvector { -968, 0, 0, 0 } 31 typeOffsets:intvector { -52, 0, 0, 0, 0, 1200 } 38 typeOffsets:intvector { 732, 0, 0, 0, 0, 3600, 561, 0, 3600, 0, 3600, 3600 } 48 typeOffsets:intvector { -3740, 0, -3600, 0, 0, 0 } 57 typeOffsets:intvector { 7509, 0, 7200, 0, 7200, 3600 } 64 typeOffsets:intvector { -1820, 0, 0, 0, 0, 3600, 3600, 0 } 70 typeOffsets:intvector { -1276, 0, 0, 0, 0, 3600, 3600, 0, 3600, 3600 } 84 typeOffsets:intvector { -3168, 0, -3600, 0, 0, 0, 0, 3600 } 93 typeOffsets:intvector { 6720, 0, 5400, 0, 7200, 0, 7200, 3600 } 99 typeOffsets:intvector { 7588, 0, 7200, 0, 7200, 3600, 10800, 0 } [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | OlsonTimeZone.java | 431 !Arrays.equals(typeOffsets, o.typeOffsets)){ in hasSameRules() 467 typeOffsets = new int[]{0,0}; in constructEmpty() 563 typeOffsets = r.getIntVector(); in construct() 564 … if ((typeOffsets.length < 2 || typeOffsets.length > 0x7FFE || typeOffsets.length % 2 != 0)) { in construct() 567 typeCount = typeOffsets.length / 2; in construct() 759 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1]; in zoneOffsetAt() 764 return typeOffsets[typeIdx]; in rawOffsetAt() 769 return typeOffsets[typeIdx + 1]; in dstOffsetAt() 773 return typeOffsets[0]; in initialRawOffset() 777 return typeOffsets[1]; in initialDstOffset() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | OlsonTimeZone.java | 433 !Arrays.equals(typeOffsets, o.typeOffsets)){ in hasSameRules() 469 typeOffsets = new int[]{0,0}; in constructEmpty() 565 typeOffsets = r.getIntVector(); in construct() 566 … if ((typeOffsets.length < 2 || typeOffsets.length > 0x7FFE || typeOffsets.length % 2 != 0)) { in construct() 569 typeCount = typeOffsets.length / 2; in construct() 761 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1]; in zoneOffsetAt() 766 return typeOffsets[typeIdx]; in rawOffsetAt() 771 return typeOffsets[typeIdx + 1]; in dstOffsetAt() 775 return typeOffsets[0]; in initialRawOffset() 779 return typeOffsets[1]; in initialDstOffset() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | olsontz.h | 356 const int32_t *typeOffsets; // alias into res; do not delete variable 417 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1]; in zoneOffsetAt() 423 return typeOffsets[typeIdx]; in rawOffsetAt() 429 return typeOffsets[typeIdx + 1]; in dstOffsetAt() 434 return typeOffsets[0]; in initialRawOffset() 439 return typeOffsets[1]; in initialDstOffset()
|
D | olsontz.cpp | 108 typeOffsets = ZEROS; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 181 typeOffsets = ures_getIntVector(&r, &len, &ec); in OlsonTimeZone() 288 typeOffsets = other.typeOffsets; in operator =() 650 && arrayEqual(typeOffsets, z->typeOffsets, sizeof(typeOffsets[0]) * typeCount << 1) in hasSameRules() 768 raw = typeOffsets[typeIdx << 1] * U_MILLIS_PER_SECOND; in initTransitionRules() 769 dst = typeOffsets[(typeIdx << 1) + 1] * U_MILLIS_PER_SECOND; in initTransitionRules()
|