Searched refs:fullValues (Results 1 – 3 of 3) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckAttributeValues.java | 351 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/ |
D | AttributeValueValidity.java | 63 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/ |
D | GenerateXMB.java | 653 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()
|