/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | TimeZone.java | 478 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale); in _getDisplayName() local 484 result = tzfmt.format(Style.GENERIC_LOCATION, this, date, timeType); in _getDisplayName() 487 result = tzfmt.format(Style.GENERIC_LONG, this, date, timeType); in _getDisplayName() 490 result = tzfmt.format(Style.GENERIC_SHORT, this, date, timeType); in _getDisplayName() 501 … tzfmt.formatOffsetShortLocalizedGMT(offset) : tzfmt.formatOffsetLocalizedGMT(offset); in _getDisplayName() 506 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale); in _getDisplayName() local 510 result = tzfmt.formatOffsetLocalizedGMT(offset); in _getDisplayName() 513 result = tzfmt.formatOffsetISO8601Basic(offset, false, false, false); in _getDisplayName() 536 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale); in _getDisplayName() local 539 … tzfmt.formatOffsetLocalizedGMT(offset) : tzfmt.formatOffsetShortLocalizedGMT(offset); in _getDisplayName()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | TimeZone.java | 542 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale); in _getDisplayName() local 548 result = tzfmt.format(Style.GENERIC_LOCATION, this, date, timeType); in _getDisplayName() 551 result = tzfmt.format(Style.GENERIC_LONG, this, date, timeType); in _getDisplayName() 554 result = tzfmt.format(Style.GENERIC_SHORT, this, date, timeType); in _getDisplayName() 565 … tzfmt.formatOffsetShortLocalizedGMT(offset) : tzfmt.formatOffsetLocalizedGMT(offset); in _getDisplayName() 570 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale); in _getDisplayName() local 574 result = tzfmt.formatOffsetLocalizedGMT(offset); in _getDisplayName() 577 result = tzfmt.formatOffsetISO8601Basic(offset, false, false, false); in _getDisplayName() 600 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale); in _getDisplayName() local 603 … tzfmt.formatOffsetLocalizedGMT(offset) : tzfmt.formatOffsetShortLocalizedGMT(offset); in _getDisplayName()
|
/external/icu/icu4c/source/i18n/ |
D | smpdtfmt.cpp | 1760 const TimeZoneFormat *tzfmt = tzFormat(status); in subFormat() local 1765 tzfmt->format(UTZFMT_STYLE_SPECIFIC_SHORT, tz, date, zoneString); in subFormat() 1769 tzfmt->format(UTZFMT_STYLE_SPECIFIC_LONG, tz, date, zoneString); in subFormat() 1776 tzfmt->format(UTZFMT_STYLE_ISO_BASIC_LOCAL_FULL, tz, date, zoneString); in subFormat() 1779 tzfmt->format(UTZFMT_STYLE_ISO_EXTENDED_FULL, tz, date, zoneString); in subFormat() 1782 tzfmt->format(UTZFMT_STYLE_LOCALIZED_GMT, tz, date, zoneString); in subFormat() 1788 tzfmt->format(UTZFMT_STYLE_GENERIC_SHORT, tz, date, zoneString); in subFormat() 1792 tzfmt->format(UTZFMT_STYLE_GENERIC_LONG, tz, date, zoneString); in subFormat() 1799 tzfmt->format(UTZFMT_STYLE_ZONE_ID_SHORT, tz, date, zoneString); in subFormat() 1802 tzfmt->format(UTZFMT_STYLE_ZONE_ID, tz, date, zoneString); in subFormat() [all …]
|
D | timezone.cpp | 1230 LocalPointer<TimeZoneFormat> tzfmt(TimeZoneFormat::createInstance(locale, status)); in getDisplayName() local 1238 tzfmt->format(UTZFMT_STYLE_GENERIC_LOCATION, *this, date, result, &timeType); in getDisplayName() 1241 tzfmt->format(UTZFMT_STYLE_GENERIC_LONG, *this, date, result, &timeType); in getDisplayName() 1244 tzfmt->format(UTZFMT_STYLE_GENERIC_SHORT, *this, date, result, &timeType); in getDisplayName() 1255 tzfmt->formatOffsetShortLocalizedGMT(offset, result, status); in getDisplayName() 1257 tzfmt->formatOffsetLocalizedGMT(offset, result, status); in getDisplayName() 1261 LocalPointer<TimeZoneFormat> tzfmt(TimeZoneFormat::createInstance(locale, status)); in getDisplayName() local 1269 tzfmt->formatOffsetLocalizedGMT(offset, result, status); in getDisplayName() 1272 tzfmt->formatOffsetISO8601Basic(offset, FALSE, FALSE, FALSE, result, status); in getDisplayName() 1301 LocalPointer<TimeZoneFormat> tzfmt(TimeZoneFormat::createInstance(locale, status)); in getDisplayName() local [all …]
|
D | tzfmt.cpp | 487 TimeZoneFormat* tzfmt = (TimeZoneFormat*)&other; in operator ==() local 490 fLocale == tzfmt->fLocale in operator ==() 491 && fGMTPattern == tzfmt->fGMTPattern in operator ==() 492 && fGMTZeroFormat == tzfmt->fGMTZeroFormat in operator ==() 493 && *fTimeZoneNames == *tzfmt->fTimeZoneNames; in operator ==() 496 isEqual = fGMTOffsetPatterns[i] == tzfmt->fGMTOffsetPatterns[i]; in operator ==() 499 isEqual = fGMTOffsetDigits[i] == tzfmt->fGMTOffsetDigits[i]; in operator ==() 515 TimeZoneFormat* tzfmt = new TimeZoneFormat(locale, status); in createInstance() local 517 return tzfmt; in createInstance() 519 delete tzfmt; in createInstance()
|
D | sources.txt | 191 tzfmt.cpp
|
/external/icu/icu4c/source/test/intltest/ |
D | tzfmttst.cpp | 861 …LocalPointer<TimeZoneFormat> tzfmt(TimeZoneFormat::createInstance(Locale(DATA[i].locale), status)); in TestParse() local 868 TimeZone* tz = tzfmt->parse(DATA[i].style, DATA[i].text, pos, DATA[i].parseOptions, &ttype); in TestParse() 1145 …LocalPointer<TimeZoneFormat> tzfmt(TimeZoneFormat::createInstance(Locale(DATA[i].locale), status)); in TestFormat() local 1155 tzfmt->format(DATA[i].style, *(tz.getAlias()), DATA[i].date, out, &timeType); in TestFormat() 1236 LocalPointer<TimeZoneFormat> tzfmt(TimeZoneFormat::createInstance(loc, status)); in TestFormatTZDBNames() local 1246 tzfmt->adoptTimeZoneNames(tzdbNames); in TestFormatTZDBNames() 1252 tzfmt->format(DATA[i].style, *(tz.getAlias()), DATA[i].date, out, &timeType); in TestFormatTZDBNames() 1288 LocalPointer<TimeZoneFormat> tzfmt(TimeZoneFormat::createInstance(Locale("en"), status)); in TestFormatCustomZone() local 1289 if (tzfmt.isNull()) { in TestFormatCustomZone() 1296 tzfmt->format(UTZFMT_STYLE_SPECIFIC_LONG, tz, now, tzstr, NULL); in TestFormatCustomZone()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 664 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(loc); in TestParse() local 667 TimeZone tz = tzfmt.parse(style, text, pos, options, timeType); in TestParse() 959 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(uloc); in TestFormat() local 960 … String out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType); in TestFormat() 970 tzfmt = TimeZoneFormat.getInstance(loc); in TestFormat() 971 out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType); in TestFormat() 1047 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(loc).cloneAsThawed(); in TestFormatTZDBNames() local 1049 tzfmt.setTimeZoneNames(tzdbNames); in TestFormatTZDBNames() 1053 … String out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType); in TestFormatTZDBNames()
|
D | DateFormatTest.java | 680 TimeZoneFormat tzfmt = univ.getTimeZoneFormat().cloneAsThawed(); in TestGenericTime() local 681 tzfmt.setDefaultParseOptions(EnumSet.of(ParseOption.ALL_STYLES)); in TestGenericTime() 682 tzfmt.freeze(); in TestGenericTime() 683 univ.setTimeZoneFormat(tzfmt); in TestGenericTime() 685 sdf.setTimeZoneFormat(tzfmt); in TestGenericTime() 3387 TimeZoneFormat tzfmt = fmt.getTimeZoneFormat().cloneAsThawed(); in expect() local 3388 tzfmt.setDefaultParseOptions(EnumSet.of(ParseOption.ALL_STYLES)).freeze(); in expect() 3389 fmt.setTimeZoneFormat(tzfmt); in expect()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 661 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(loc); in TestParse() local 664 TimeZone tz = tzfmt.parse(style, text, pos, options, timeType); in TestParse() 956 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(uloc); in TestFormat() local 957 … String out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType); in TestFormat() 967 tzfmt = TimeZoneFormat.getInstance(loc); in TestFormat() 968 out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType); in TestFormat() 1044 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(loc).cloneAsThawed(); in TestFormatTZDBNames() local 1046 tzfmt.setTimeZoneNames(tzdbNames); in TestFormatTZDBNames() 1050 … String out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType); in TestFormatTZDBNames()
|
D | DateFormatTest.java | 677 TimeZoneFormat tzfmt = univ.getTimeZoneFormat().cloneAsThawed(); in TestGenericTime() local 678 tzfmt.setDefaultParseOptions(EnumSet.of(ParseOption.ALL_STYLES)); in TestGenericTime() 679 tzfmt.freeze(); in TestGenericTime() 680 univ.setTimeZoneFormat(tzfmt); in TestGenericTime() 682 sdf.setTimeZoneFormat(tzfmt); in TestGenericTime() 3384 TimeZoneFormat tzfmt = fmt.getTimeZoneFormat().cloneAsThawed(); in expect() local 3385 tzfmt.setDefaultParseOptions(EnumSet.of(ParseOption.ALL_STYLES)).freeze(); in expect() 3386 fmt.setTimeZoneFormat(tzfmt); in expect()
|
/external/icu/tools/icu4c_srcgen/ |
D | cxxfiles.txt | 144 tzfmt.h
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | FormatHandler.java | 2507 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(ULocale.ENGLISH).cloneAsThawed(); in getTestObjects() local 2508 tzfmt.setGMTPattern(CUSTOM_GMT_PATTERN); in getTestObjects() 2510 return new Object[] {tzfmt}; in getTestObjects()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
D | FormatHandler.java | 2510 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(ULocale.ENGLISH).cloneAsThawed(); in getTestObjects() local 2511 tzfmt.setGMTPattern(CUSTOM_GMT_PATTERN); in getTestObjects() 2513 return new Object[] {tzfmt}; in getTestObjects()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SimpleDateFormat.java | 4023 public void setTimeZoneFormat(TimeZoneFormat tzfmt) { in setTimeZoneFormat() argument 4024 if (tzfmt.isFrozen()) { in setTimeZoneFormat() 4026 tzFormat = tzfmt; in setTimeZoneFormat() 4029 tzFormat = tzfmt.cloneAsThawed().freeze(); in setTimeZoneFormat()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SimpleDateFormat.java | 3995 public void setTimeZoneFormat(TimeZoneFormat tzfmt) { in setTimeZoneFormat() argument 3996 if (tzfmt.isFrozen()) { in setTimeZoneFormat() 3998 tzFormat = tzfmt; in setTimeZoneFormat() 4001 tzFormat = tzfmt.cloneAsThawed().freeze(); in setTimeZoneFormat()
|
/external/skia/third_party/icu/ |
D | icu.gni | 719 "$_src/i18n/tzfmt.cpp", 804 "$_src/i18n/unicode/tzfmt.h",
|
/external/icu/icu4c/source/test/depstest/ |
D | dependencies.txt | 1069 tzfmt.o tzgnames.o tznames.o tznames_impl.o
|
/external/skqp/third_party/icu/ |
D | icu.gni | 628 "../externals/icu/source/i18n/tzfmt.cpp",
|