Home
last modified time | relevance | path

Searched refs:supplementalData (Results 1 – 25 of 34) sorted by relevance

12

/third_party/icu/tools/cldr/cldr-to-icu/src/main/resources/
Dldml2icu_supplemental.txt23 # supplementalData.xml
24 //supplementalData/currencyData/region[@iso3166="(%W)"]/currency[@iso4217="(%W)"]
26 //supplementalData/currencyData/region[@iso3166="(%W)"]/currency[@iso4217="(%W)"][@tender="false"]
29 //supplementalData/currencyData/region[@iso3166="(%W)"]/currency[@from="(%W)"][@iso4217="(%W)"]
32 //supplementalData/currencyData/region[@iso3166="(%W)"]/currency[@from="(%W)"][@iso4217="(%W)"][@te…
36 //supplementalData/currencyData/region[@iso3166="(%W)"]/currency[@from="(%W)"][@to="(%W)"][@iso4217…
40 //supplementalData/currencyData/region[@iso3166="(%W)"]/currency[@from="(%W)"][@to="(%W)"][@iso4217…
45 //supplementalData/currencyData/region[@iso3166="(%W)"]/currency[@to="(%W)"][@iso4217="(%W)"][@tend…
49 //supplementalData/currencyData/fractions/info[@iso4217="(%W)"][@digits="(%N)"][@rounding="(%N)"][@…
50 //supplementalData/currencyData/fractions/info[@iso4217="(%W)"][@digits="(%N)"][@rounding="(%N)"][@…
[all …]
Dldml2icu_readme.txt68 //supplementalData/timeData/hours[@allowed="(%W)"][@preferred="(%W)"][@regions="(%W)"]
211 //supplementalData/territoryInfo/territory[...][@writingPercent="(%N)"][@populationPercent="(%N)"][…
212 …ryF:intvector ; values=&exp($2) &exp($3,-2) &exp($4) ; base_xpath=//supplementalData/territoryInfo…
214 //supplementalData/territoryInfo/territory[...][@writingPercent="(%N)"][@populationPercent="(%N)"](…
215 …ryF:intvector ; values=&exp($2) &exp($3,-2) &exp($4) ; base_xpath=//supplementalData/territoryInfo…
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ant/
DLocaleIdResolver.java29 Set<String> idSpecs, SupplementalData supplementalData) { in expandTargetIds() argument
30 return new LocaleIdResolver(supplementalData).resolve(idSpecs); in expandTargetIds()
33 private final SupplementalData supplementalData; field in LocaleIdResolver
35 private LocaleIdResolver(SupplementalData supplementalData) { in LocaleIdResolver() argument
36 this.supplementalData = checkNotNull(supplementalData); in LocaleIdResolver()
44 ImmutableSet<String> allAvailableIds = supplementalData.getAvailableLocaleIds(); in resolve()
47 .filter(supplementalData.getAvailableLocaleIds()::contains) in resolve()
95 String maxId = supplementalData.maximize(lang) in removeDefaultScript()
109 id = supplementalData.getParent(id); in addRecursively()
118 String parentId = supplementalData.getParent(id); in addWildcardMatches()
DConvertIcuDataTask.java324 SupplementalData supplementalData = SupplementalData.create(src); in execute() local
326 LocaleIdResolver.expandTargetIds(this.localeIds.ids, supplementalData); in execute()
336 checkArgument(supplementalData.getParent(id).equals("root"), in execute()
342 LdmlConverter.convert(src, supplementalData, config.build()); in execute()
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/
DSupplementalMapperTest.java32 supplementalData("likelySubtags/likelySubtag[@from=\"Foo\"][@to=\"Bar\"]"), in testSimple()
51 supplementalData("currencyData/region[@iso3166=\"US\"]/currency[@iso4217=\"USN\"]"), in testFifoLabel()
54 supplementalData("currencyData/region[@iso3166=\"US\"]/currency[@iso4217=\"USS\"]"), in testFifoLabel()
57 supplementalData("currencyData/region[@iso3166=\"US\"]/currency[@iso4217=\"USD\"]"), in testFifoLabel()
71 supplementalData("likelySubtags/likelySubtag[@from=\"Foo\"][@to=\"Bar\"]"), in testPathFilter()
74 supplementalData("currencyData/region[@iso3166=\"US\"]/currency[@iso4217=\"USN\"]"), in testPathFilter()
94 private static CldrValue supplementalData(String path) { in supplementalData() method in SupplementalMapperTest
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/
DSupplementalDataTest.java311 return supplementalData( in parentLocales()
317 return supplementalData( in defaultCalendar()
323 return supplementalData( in likelySubtag()
328 return supplementalData( in languageAlias()
333 return supplementalData( in scriptAlias()
338 return supplementalData( in territoryAlias()
342 private static CldrValue supplementalData(String path, Object... args) { in supplementalData() method in SupplementalDataTest
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DLikelySubtagsBuilder.java102 public static Aliases getAliases(CldrData supplementalData, AliasType type) { in getAliases() argument
105 supplementalData.accept(DTD, v -> { in getAliases()
152 public static XLikelySubtags.Data build(CldrData supplementalData) { in build() argument
154 Aliases languageAliases = Aliases.getAliases(supplementalData, AliasType.LANGUAGE); in build()
155 Aliases regionAliases = Aliases.getAliases(supplementalData, AliasType.TERRITORY); in build()
157 makeTable(languageAliases, regionAliases, supplementalData); in build()
245 Aliases languageAliases, Aliases regionAliases, CldrData supplementalData) { in makeTable() argument
250 supplementalData.accept(DTD, v -> { in makeTable()
DLocaleDistanceMapper.java327 private static LocaleDistance.Data buildDistanceData(CldrData supplementalData) { in buildDistanceData() argument
332 PartitionInfo.builder(TerritoryContainment.getContainment(supplementalData)); in buildDistanceData()
333 supplementalData.accept(DTD, v -> { in buildDistanceData()
354 supplementalData.accept(DTD, v -> { in buildDistanceData()
397 getParadigmLsrs(supplementalData), in buildDistanceData()
401 private static Set<LSR> getParadigmLsrs(CldrData supplementalData) { in getParadigmLsrs() argument
403 CldrValue cldrValue = supplementalData.get(PARADIGM_LOCALES_PATH); in getParadigmLsrs()
DTerritoryContainment.java49 public static TerritoryContainment getContainment(CldrData supplementalData) { in getContainment() argument
54 supplementalData.accept(CldrData.PathOrder.DTD, v -> { in getContainment()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DLdmlConverter.java197 CldrDataSupplier src, SupplementalData supplementalData, LdmlConverterConfig config) { in convert() argument
198 new LdmlConverter(src, supplementalData, config).convertAll(); in convert()
204 private final SupplementalData supplementalData; field in LdmlConverter
219 CldrDataSupplier src, SupplementalData supplementalData, LdmlConverterConfig config) { in LdmlConverter() argument
221 this.supplementalData = checkNotNull(supplementalData); in LdmlConverter()
224 Sets.intersection(supplementalData.getAvailableLocaleIds(), config.getAllLocaleIds())); in LdmlConverter()
313 Optional<String> defaultCalendar = supplementalData.getDefaultCalendar(id); in processLdml()
323 Optional<String> parent = supplementalData.getExplicitParentLocaleOf(id); in processLdml()
420 String canonicalId = supplementalData.replaceDeprecatedTags(id); in getAliasMap()
432 String maximizedId = supplementalData.maximize(id) in getAliasMap()
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DRegion.java170 …UResourceBundle supplementalData = UResourceBundle.getBundleInstance(ICUData.ICU_BASE_NAME,"supple… in loadRegionData() local
171 codeMappings = supplementalData.get("codeMappings"); in loadRegionData()
172 idValidity = supplementalData.get("idValidity"); in loadRegionData()
178 territoryContainment = supplementalData.get("territoryContainment"); in loadRegionData()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DRegion.java176 …UResourceBundle supplementalData = UResourceBundle.getBundleInstance(ICUData.ICU_BASE_NAME,"supple… in loadRegionData() local
177 codeMappings = supplementalData.get("codeMappings"); in loadRegionData()
178 idValidity = supplementalData.get("idValidity"); in loadRegionData()
184 territoryContainment = supplementalData.get("territoryContainment"); in loadRegionData()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/locale/
DLocaleDistanceBuilder.java64 TerritoryContainment(ICUResourceBundle supplementalData) { in TerritoryContainment() argument
65 UResource.Value value = supplementalData.getValueWithFallback("territoryContainment"); in TerritoryContainment()
485 ICUResourceBundle supplementalData = getSupplementalDataBundle("supplementalData"); in build() local
486 String[] paradigms = supplementalData.getValueWithFallback( in build()
498 TerritoryContainment tc = new TerritoryContainment(supplementalData); in build()
501 UResource.Value value = supplementalData.getValueWithFallback( in build()
519 value = supplementalData.getValueWithFallback("languageMatchingNew/written"); in build()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/tool/locale/
DLocaleDistanceBuilder.java64 TerritoryContainment(ICUResourceBundle supplementalData) { in TerritoryContainment() argument
65 UResource.Value value = supplementalData.getValueWithFallback("territoryContainment"); in TerritoryContainment()
485 ICUResourceBundle supplementalData = getSupplementalDataBundle("supplementalData"); in build() local
486 String[] paradigms = supplementalData.getValueWithFallback( in build()
498 TerritoryContainment tc = new TerritoryContainment(supplementalData); in build()
501 UResource.Value value = supplementalData.getValueWithFallback( in build()
519 value = supplementalData.getValueWithFallback("languageMatchingNew/written"); in build()
/third_party/flutter/skia/third_party/externals/icu/source/data/misc/
Dmiscfiles.mk28 zoneinfo64.txt supplementalData.txt likelySubtags.txt plurals.txt \
/third_party/icu/icu4c/source/data/misc/
Dmiscfiles.mk28 zoneinfo64.txt supplementalData.txt likelySubtags.txt plurals.txt \
/third_party/skia/third_party/externals/icu/source/i18n/
Dregion.cpp99 LocalUResourceBundlePointer supplementalData(ures_openDirect(NULL,"supplementalData",&status)); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() local
100 …LocalUResourceBundlePointer codeMappings(ures_getByKey(supplementalData.getAlias(),"codeMappings",… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
102 …LocalUResourceBundlePointer idValidity(ures_getByKey(supplementalData.getAlias(),"idValidity",NULL… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
108 …LocalUResourceBundlePointer territoryContainment(ures_getByKey(supplementalData.getAlias(),"territ… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
/third_party/icu/icu4c/source/i18n/
Dregion.cpp99 LocalUResourceBundlePointer supplementalData(ures_openDirect(NULL,"supplementalData",&status)); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() local
100 …LocalUResourceBundlePointer codeMappings(ures_getByKey(supplementalData.getAlias(),"codeMappings",… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
102 …LocalUResourceBundlePointer idValidity(ures_getByKey(supplementalData.getAlias(),"idValidity",NULL… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
108 …LocalUResourceBundlePointer territoryContainment(ures_getByKey(supplementalData.getAlias(),"territ… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dregion.cpp100 LocalUResourceBundlePointer supplementalData(ures_openDirect(NULL,"supplementalData",&status)); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() local
101 …LocalUResourceBundlePointer codeMappings(ures_getByKey(supplementalData.getAlias(),"codeMappings",… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
103 …LocalUResourceBundlePointer idValidity(ures_getByKey(supplementalData.getAlias(),"idValidity",NULL… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
109 …LocalUResourceBundlePointer territoryContainment(ures_getByKey(supplementalData.getAlias(),"territ… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
/third_party/node/deps/icu-small/source/i18n/
Dregion.cpp99 LocalUResourceBundlePointer supplementalData(ures_openDirect(NULL,"supplementalData",&status)); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() local
100 …LocalUResourceBundlePointer codeMappings(ures_getByKey(supplementalData.getAlias(),"codeMappings",… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
102 …LocalUResourceBundlePointer idValidity(ures_getByKey(supplementalData.getAlias(),"idValidity",NULL… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
108 …LocalUResourceBundlePointer territoryContainment(ures_getByKey(supplementalData.getAlias(),"territ… in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
/third_party/icu/docs/userguide/icu_data/
Dbuildtool.md226 …al"` <br/> `"curr_tree"` | misc/currencyNumericCodes.txt <br/> curr/supplementalData.txt <br/> cur…
239 …br/> misc/genderList.txt <br/> misc/numberingSystems.txt <br/> misc/supplementalData.txt <br/> loc…
474 you wanted to apply a filter to misc/supplementalData.txt, you could do the
481 includelist: ["supplementalData"]
/third_party/skia/third_party/externals/icu/filters/
Dchromeos.json1339 "supplementalData"
Dcommon.json1320 "supplementalData"
/third_party/flutter/skia/third_party/externals/icu/flutter/
Dflutter-removed-resources.txt405 supplementalData.res
/third_party/flutter/skia/third_party/externals/icu/patches/
Dlocale_google.patch173 diff --git a/source/data/misc/supplementalData.txt b/source/data/misc/supplementalData.txt
175 --- a/source/data/misc/supplementalData.txt
176 +++ b/source/data/misc/supplementalData.txt
177 @@ -16917,8 +16917,8 @@ supplementalData:table(nofallback){
187 @@ -17416,13 +17416,13 @@ supplementalData:table(nofallback){

12