Home
last modified time | relevance | path

Searched refs:IsoCountryCode (Results 1 – 25 of 58) sorted by relevance

123

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3); in checkISO3166_3Codes()
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3); in checkISO3166_1_Alpha3Codes()
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2); in checkISO3166_1_Alpha2Codes()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3); in checkISO3166_3Codes()
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3); in checkISO3166_1_Alpha3Codes()
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2); in checkISO3166_1_Alpha2Codes()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3); in checkISO3166_3Codes()
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3); in checkISO3166_1_Alpha3Codes()
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2); in checkISO3166_1_Alpha2Codes()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3); in checkISO3166_3Codes()
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3); in checkISO3166_1_Alpha3Codes()
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2); in checkISO3166_1_Alpha2Codes()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3); in checkISO3166_3Codes()
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3); in checkISO3166_1_Alpha3Codes()
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2); in checkISO3166_1_Alpha2Codes()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3);
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3);
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2);
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3); in checkISO3166_3Codes()
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3); in checkISO3166_1_Alpha3Codes()
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2); in checkISO3166_1_Alpha2Codes()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/util/Locale/
H A DBug8071929.java34 import java.util.Locale.IsoCountryCode;
95 Set<String> iso3166_3Codes = Locale.getISOCountries(IsoCountryCode.PART3); in checkISO3166_3Codes()
106 Set<String> iso3166_1_Alpha3Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA3); in checkISO3166_1_Alpha3Codes()
117 Set<String> iso3166_1_Alpha2Codes = Locale.getISOCountries(IsoCountryCode.PART1_ALPHA2); in checkISO3166_1_Alpha2Codes()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/
H A DLocale.java613 public static enum IsoCountryCode { enum in Locale
656 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
662 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
663 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1125 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1127 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/
H A DLocale.java613 public static enum IsoCountryCode { enum in Locale
656 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
662 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
663 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1125 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1127 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/util/
H A DLocale.java613 public static enum IsoCountryCode { enum in Locale
656 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
662 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
663 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1125 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1127 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/util/
H A DLocale.java646 public static enum IsoCountryCode { enum in Locale
689 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
695 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
696 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1159 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1161 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/util/
H A DLocale.java647 public static enum IsoCountryCode { enum in Locale
690 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
696 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
697 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1160 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1162 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/util/
H A DLocale.java657 public static enum IsoCountryCode { enum in Locale
700 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
706 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
707 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1173 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1175 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/util/
H A DLocale.java647 public static enum IsoCountryCode { enum in Locale
690 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
696 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
697 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1160 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1162 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/util/
H A DLocale.java647 public static enum IsoCountryCode { enum in Locale
690 private static Map<IsoCountryCode, Set<String>> iso3166CodesMap = new ConcurrentHashMap<>();
696 static Set<String> retrieveISOCountryCodes(IsoCountryCode type) { in retrieveISOCountryCodes()
697 return iso3166CodesMap.computeIfAbsent(type, IsoCountryCode::createCountryCodeSet); in retrieveISOCountryCodes()
1160 public static Set<String> getISOCountries(IsoCountryCode type) { in getISOCountries()
1162 return IsoCountryCode.retrieveISOCountryCodes(type); in getISOCountries()
/dports/security/vault/aws-sdk-go-v2-fdbaadbce5fd/service/pinpoint/types/
H A Dtypes.go4055 IsoCountryCode *string member
/dports/security/vault/aws-sdk-go-v2-credentials-v1.1.5/service/pinpoint/types/
H A Dtypes.go4055 IsoCountryCode *string member
/dports/security/vault/vault-1.8.2/vendor/github.com/aws/aws-sdk-go-v2/service/pinpoint/types/
H A Dtypes.go4055 IsoCountryCode *string member
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-be1c89938486/service/pinpoint/types/
H A Dtypes.go3988 IsoCountryCode *string member
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-credentials-v1.1.1/service/pinpoint/types/
H A Dtypes.go3988 IsoCountryCode *string
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/aws/aws-sdk-go-v2/service/pinpoint/types/
H A Dtypes.go3988 IsoCountryCode *string member
/dports/security/vault/aws-sdk-go-v2-1.5.0/service/pinpoint/types/
H A Dtypes.go4055 IsoCountryCode *string member
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-a930583ec379/service/pinpoint/types/
H A Dtypes.go4576 IsoCountryCode *string member
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/aws/aws-sdk-go/aws-sdk-go-1.15.11/service/pinpoint/
H A Dapi.go16050 IsoCountryCode *string `type:"string"` member
16070 s.IsoCountryCode = &v

123