Searched refs:dstBefore (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 695 int offsetBefore = rawBefore + dstBefore; 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 720 int offsetBefore = rawBefore + dstBefore; 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 RuleBasedTimeZone::getLocalDelta(int32_t rawBefore, int32_t dstBefore, int32_t rawAfter, int32_t ds… in getLocalDelta() argument 914 int32_t offsetBefore = rawBefore + dstBefore; in getLocalDelta() 917 UBool dstToStd = (dstBefore != 0) && (dstAfter == 0); in getLocalDelta() 918 UBool stdToDst = (dstBefore == 0) && (dstAfter != 0); in getLocalDelta()
|
D | olsontz.cpp | 500 UBool dstBefore = dstOffsetAt(transIdx - 1) != 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 | 694 boolean dstBefore = dstOffsetAt(transIdx - 1) != 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 | 696 boolean dstBefore = dstOffsetAt(transIdx - 1) != 0; in getHistoricalOffset() 701 boolean dstToStd = dstBefore && !dstAfter; in getHistoricalOffset() 702 boolean stdToDst = !dstBefore && dstAfter; in getHistoricalOffset()
|