/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | TimeZone.java | 216 public static final int GENERIC_LOCATION = 7; field in TimeZone 486 if (style < SHORT || style > GENERIC_LOCATION) { in getDisplayName() 505 if (style == GENERIC_LOCATION || style == LONG_GENERIC || style == SHORT_GENERIC) { in _getDisplayName() 512 case GENERIC_LOCATION: in _getDisplayName() 513 result = tzfmt.format(Style.GENERIC_LOCATION, this, date, timeType); in _getDisplayName()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | TimeZone.java | 226 public static final int GENERIC_LOCATION = 7; field in TimeZone 521 if (style < SHORT || style > GENERIC_LOCATION) { in getDisplayName() 540 if (style == GENERIC_LOCATION || style == LONG_GENERIC || style == SHORT_GENERIC) { in _getDisplayName() 547 case GENERIC_LOCATION: in _getDisplayName() 548 result = tzfmt.format(Style.GENERIC_LOCATION, this, date, timeType); in _getDisplayName()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | TimeZoneFormat.java | 90 GENERIC_LOCATION (0x0001), enumConstant 891 case GENERIC_LOCATION: in format() 934 case GENERIC_LOCATION: in format() 1085 … (style == Style.SPECIFIC_LONG || style == Style.GENERIC_LONG || style == Style.GENERIC_LOCATION); in parse() 1242 case GENERIC_LOCATION: in parse() 1246 case GENERIC_LOCATION: in parse() 1548 return parse(Style.GENERIC_LOCATION, text, pos, EnumSet.of(ParseOption.ALL_STYLES), null);
|
D | SimpleDateFormat.java | 1825 result = tzFormat().format(Style.GENERIC_LOCATION, tz, date); in subFormat() 3533 style = Style.GENERIC_LOCATION; in subParse()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | TimeZoneFormat.java | 88 GENERIC_LOCATION (0x0001), enumConstant 834 case GENERIC_LOCATION: in format() 877 case GENERIC_LOCATION: in format() 1024 … (style == Style.SPECIFIC_LONG || style == Style.GENERIC_LONG || style == Style.GENERIC_LOCATION); in parse() 1181 case GENERIC_LOCATION: in parse() 1185 case GENERIC_LOCATION: in parse() 1485 return parse(Style.GENERIC_LOCATION, text, pos, EnumSet.of(ParseOption.ALL_STYLES), null);
|
D | SimpleDateFormat.java | 1812 result = tzFormat().format(Style.GENERIC_LOCATION, tz, date); in subFormat() 3511 style = Style.GENERIC_LOCATION; in subParse()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/unicode/ |
D | timezone.h | 623 GENERIC_LOCATION enumerator
|
/third_party/icu/icu4c/source/i18n/unicode/ |
D | timezone.h | 641 GENERIC_LOCATION enumerator
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
D | timezone.h | 641 GENERIC_LOCATION enumerator
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
D | timezone.h | 690 GENERIC_LOCATION enumerator
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 575 {"Zambia time", 0, "en_US", Style.GENERIC_LOCATION, in TestParse() 892 Style.GENERIC_LOCATION, in TestFormat()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 572 {"Zambia time", 0, "en_US", Style.GENERIC_LOCATION, in TestParse() 889 Style.GENERIC_LOCATION, in TestFormat()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
D | FormatHandler.java | 2536 String genloca = tzfa.format(Style.GENERIC_LOCATION, tz, now); in hasSameBehavior() 2537 String genlocb = tzfb.format(Style.GENERIC_LOCATION, tz, now); in hasSameBehavior()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | timezone.cpp | 1229 if (style == GENERIC_LOCATION || style == LONG_GENERIC || style == SHORT_GENERIC) { in getDisplayName() 1237 case GENERIC_LOCATION: in getDisplayName()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | FormatHandler.java | 2549 String genloca = tzfa.format(Style.GENERIC_LOCATION, tz, now); in hasSameBehavior() 2550 String genlocb = tzfb.format(Style.GENERIC_LOCATION, tz, now); in hasSameBehavior()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | timezone.cpp | 1248 if (style == GENERIC_LOCATION || style == LONG_GENERIC || style == SHORT_GENERIC) { in getDisplayName() 1256 case GENERIC_LOCATION: in getDisplayName()
|
/third_party/icu/icu4c/source/i18n/ |
D | timezone.cpp | 1229 if (style == GENERIC_LOCATION || style == LONG_GENERIC || style == SHORT_GENERIC) { in getDisplayName() 1237 case GENERIC_LOCATION: in getDisplayName()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | timezone.cpp | 1205 if (style == GENERIC_LOCATION || style == LONG_GENERIC || style == SHORT_GENERIC) { in getDisplayName() 1213 case GENERIC_LOCATION: in getDisplayName()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | tztest.cpp | 1450 {FALSE, TimeZone::GENERIC_LOCATION, "Los Angeles Time"}, in TestDisplayName() 1451 {TRUE, TimeZone::GENERIC_LOCATION, "Los Angeles Time"}, in TestDisplayName()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
D | TimeZoneTest.java | 375 Boolean.FALSE, new Integer(TimeZone.GENERIC_LOCATION), "Los Angeles Time", in TestDisplayName() 376 Boolean.TRUE, new Integer(TimeZone.GENERIC_LOCATION), "Los Angeles Time", in TestDisplayName()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/ |
D | TimeZoneTest.java | 379 Boolean.FALSE, new Integer(TimeZone.GENERIC_LOCATION), "Los Angeles Time", in TestDisplayName() 380 Boolean.TRUE, new Integer(TimeZone.GENERIC_LOCATION), "Los Angeles Time", in TestDisplayName()
|
/third_party/icu/icu4j/tools/build/ |
D | icu4j60.api3.gz | 12;ICU4J 60.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j62.api3.gz | 12;ICU4J 62.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j61.api3.gz |
|
D | icu4j67.api3.gz |
|