Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/test/
DCheckAttributeValues.java351 Set<String> fullValues = new TreeSet<>();
356 fullValues.add(value.toUpperCase()); in value.toUpperCase()
358 fullValues.add(value);
363 fullValues.addAll(aliases);
368 fullValues.add("generic");
370 fullValues = Collections.unmodifiableSet(fullValues);
371 temp.put(key, fullValues); in temp.put() argument
376 temp.put(aliasKey, fullValues); in temp.put() argument
/external/cldr/tools/java/org/unicode/cldr/util/
DAttributeValueValidity.java63 Set<String> fullValues = new TreeSet<>();
71 fullValues.add(value.toUpperCase()); in value.toUpperCase()
73 fullValues.add(value);
78 fullValues.addAll(aliases);
83 fullValues.add("generic");
85 fullValues = Collections.unmodifiableSet(fullValues);
86 addCollectionVariable("$_bcp47_" + key, fullValues);
93 addCollectionVariable("$_bcp47_" + aliasKey, fullValues);
96 bcp47Values.addAll(fullValues);
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateXMB.java653 Map<String, String> fullValues = new TreeMap<>(); in writeCountPathInfo() local
664 fullValues.put(count, value); in writeCountPathInfo()
669 if (fullValues.size() < 2) { in writeCountPathInfo()
674 … String fullPlurals = showPlurals(fullValues, locale, pathInfo, pluralInfo, isEnglish, errorSet); in writeCountPathInfo()