Home
last modified time | relevance | path

Searched refs:inDaylight (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
Dtimezone.cpp1190 TimeZone::getDisplayName(UBool inDaylight, EDisplayType style, UnicodeString& result) const in getDisplayName() argument
1192 return getDisplayName(inDaylight,style, Locale::getDefault(), result); in getDisplayName()
1204 TimeZone::getDisplayName(UBool inDaylight, EDisplayType style, const Locale& locale, UnicodeString&… in getDisplayName() argument
1234 …if ((inDaylight && timeType == UTZFMT_TIME_TYPE_STANDARD) || (!inDaylight && timeType == UTZFMT_TI… in getDisplayName()
1235 offset = inDaylight ? getRawOffset() + getDSTSavings() : getRawOffset(); in getDisplayName()
1248 … offset = inDaylight && useDaylightTime() ? getRawOffset() + getDSTSavings() : getRawOffset(); in getDisplayName()
1265 nameType = inDaylight ? UTZNM_LONG_DAYLIGHT : UTZNM_LONG_STANDARD; in getDisplayName()
1269 nameType = inDaylight ? UTZNM_SHORT_DAYLIGHT : UTZNM_SHORT_STANDARD; in getDisplayName()
1284 … offset = inDaylight && useDaylightTime() ? getRawOffset() + getDSTSavings() : getRawOffset(); in getDisplayName()
/external/icu/icu4c/source/i18n/unicode/
Dtimezone.h671 … UnicodeString& getDisplayName(UBool inDaylight, EDisplayType style, UnicodeString& result) const;
687 …UnicodeString& getDisplayName(UBool inDaylight, EDisplayType style, const Locale& locale, UnicodeS…
/external/icu/icu4c/source/test/intltest/
Dtztest.cpp1482 UnicodeString inDaylight; in TestDisplayName() local
1484 inDaylight = UnicodeString("TRUE"); in TestDisplayName()
1486 inDaylight = UnicodeString("FALSE"); in TestDisplayName()
1488 logln(UnicodeString("Modified PST inDaylightTime->") + inDaylight ); in TestDisplayName()