Searched refs:dstAfter (Results 1 – 7 of 7) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | RuleBasedTimeZone.java | 691 private static int getLocalDelta(int rawBefore, int dstBefore, int rawAfter, int dstAfter, in getLocalDelta() argument 696 int offsetAfter = rawAfter + dstAfter; in getLocalDelta() 698 boolean dstToStd = (dstBefore != 0) && (dstAfter == 0); in getLocalDelta() 699 boolean stdToDst = (dstBefore == 0) && (dstAfter != 0); in getLocalDelta()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | RuleBasedTimeZone.java | 716 private static int getLocalDelta(int rawBefore, int dstBefore, int rawAfter, int dstAfter, in getLocalDelta() argument 721 int offsetAfter = rawAfter + dstAfter; in getLocalDelta() 723 boolean dstToStd = (dstBefore != 0) && (dstAfter == 0); in getLocalDelta() 724 boolean stdToDst = (dstBefore == 0) && (dstAfter != 0); in getLocalDelta()
|
/external/icu/icu4c/source/i18n/ |
D | rbtz.cpp | 910 …edTimeZone::getLocalDelta(int32_t rawBefore, int32_t dstBefore, int32_t rawAfter, int32_t dstAfter, in getLocalDelta() argument 915 int32_t offsetAfter = rawAfter + dstAfter; in getLocalDelta() 917 UBool dstToStd = (dstBefore != 0) && (dstAfter == 0); in getLocalDelta() 918 UBool stdToDst = (dstBefore == 0) && (dstAfter != 0); in getLocalDelta()
|
D | olsontz.cpp | 503 UBool dstAfter = dstOffsetAt(transIdx) != 0; in getHistoricalOffset() local 505 UBool dstToStd = dstBefore && !dstAfter; in getHistoricalOffset() 506 UBool stdToDst = !dstBefore && dstAfter; in getHistoricalOffset()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | rbtz.h | 316 int32_t getLocalDelta(int32_t rawBefore, int32_t dstBefore, int32_t rawAfter, int32_t dstAfter,
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | OlsonTimeZone.java | 697 boolean dstAfter = dstOffsetAt(transIdx) != 0; in getHistoricalOffset() 699 boolean dstToStd = dstBefore && !dstAfter; in getHistoricalOffset() 700 boolean stdToDst = !dstBefore && dstAfter; in getHistoricalOffset()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | OlsonTimeZone.java | 699 boolean dstAfter = dstOffsetAt(transIdx) != 0; in getHistoricalOffset() 701 boolean dstToStd = dstBefore && !dstAfter; in getHistoricalOffset() 702 boolean stdToDst = !dstBefore && dstAfter; in getHistoricalOffset()
|