Searched refs:typeIdx (Results 1 – 4 of 4) sorted by relevance
/external/icu4c/i18n/ |
D | olsontz.h | 409 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1; in zoneOffsetAt() local 410 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1]; in zoneOffsetAt() 415 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1; in rawOffsetAt() local 416 return typeOffsets[typeIdx]; in rawOffsetAt() 421 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1; in dstOffsetAt() local 422 return typeOffsets[typeIdx + 1]; in dstOffsetAt()
|
D | olsontz.cpp | 713 int16_t transitionIdx, typeIdx; in initTransitionRules() local 735 for (typeIdx = 0; typeIdx < typeCount; typeIdx++) { in initTransitionRules() 739 if (typeIdx == (int16_t)typeMapData[transitionIdx]) { in initTransitionRules() 749 raw = typeOffsets[typeIdx << 1] * U_MILLIS_PER_SECOND; in initTransitionRules() 750 dst = typeOffsets[(typeIdx << 1) + 1] * U_MILLIS_PER_SECOND; in initTransitionRules() 765 … historicRules[typeIdx] = new TimeArrayTimeZoneRule((dst == 0 ? stdName : dstName), in initTransitionRules() 768 if (historicRules[typeIdx] == NULL) { in initTransitionRules() 778 typeIdx = (int16_t)typeMapData[firstTZTransitionIdx]; in initTransitionRules() 780 *initialRule, *historicRules[typeIdx]); in initTransitionRules()
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | DebugInfoDecoder.java | 290 int typeIdx = readStringIndex(bs); in decode0() local 292 address, true, reg, nameIdx, typeIdx, 0); in decode0() 302 int typeIdx = readStringIndex(bs); in decode0() local 305 address, true, reg, nameIdx, typeIdx, sigIdx); in decode0()
|
D | ValueEncoder.java | 313 int typeIdx = typeIds.indexOf(type); in writeAnnotation() local 316 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " + in writeAnnotation()
|