Searched refs:fullValues (Results 1 – 3 of 3) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckAttributeValues.java | 348 Set<String> fullValues = new TreeSet<>(); 353 fullValues.add(value.toUpperCase()); in value.toUpperCase() 355 fullValues.add(value); 360 fullValues.addAll(aliases); 365 fullValues.add("generic"); 367 fullValues = Collections.unmodifiableSet(fullValues); 368 temp.put(key, fullValues); in temp.put() argument 373 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 | 654 Map<String, String> fullValues = new TreeMap<String, String>(); in writeCountPathInfo() local 665 fullValues.put(count, value); in writeCountPathInfo() 670 if (fullValues.size() < 2) { in writeCountPathInfo() 675 … String fullPlurals = showPlurals(fullValues, locale, pathInfo, pluralInfo, isEnglish, errorSet); in writeCountPathInfo()
|