Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/tool/
DShowRegionalVariants.java70 …Relation<CLDRLocale, CLDRLocale> parentToChildren = Relation.of(new TreeMap<CLDRLocale, Set<CLDRLo… in main() local
95 parentToChildren.put(parent, loc); in main()
100 showInheritance(parentToChildren); in main()
118 for (Entry<CLDRLocale, Set<CLDRLocale>> item : parentToChildren.keyValuesSet()) { in main()
269 private static void showInheritance(Relation<CLDRLocale, CLDRLocale> parentToChildren) { in showInheritance() argument
270 Set<CLDRLocale> values = parentToChildren.values(); in showInheritance()
271 Set<CLDRLocale> topParents = new TreeSet<>(parentToChildren.keySet()); in showInheritance()
273 showInheritance(topParents, "", parentToChildren); in showInheritance()
276 …nce(Set<CLDRLocale> topParents, String prefix, Relation<CLDRLocale, CLDRLocale> parentToChildren) { in showInheritance() argument
280 Set<CLDRLocale> newChildren = parentToChildren.get(locale); in showInheritance()
[all …]
DShowData.java87 …static Relation<String, String> parentToChildren = Relation.of(new TreeMap<String, Set<String>>(),… field in ShowData
159 parentToChildren.put("root", locale); in main()
160 parentToChildren.put(locale, locale); in main()
162 parentToChildren.put(baseLanguage, locale); in main()
166 for (Entry<String, Set<String>> group : parentToChildren.keyValuesSet()) { in main()
631 for (String sublocale : parentToChildren.get(locale)) {
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestBasic.java725 Multimap<String, String> parentToChildren = Inheritance.parentToChildren; in TestDefaultContents() local
762 … for (Entry<String, Collection<String>> localeAndKids : parentToChildren.asMap().entrySet()) { in TestDefaultContents()
861 public static final Multimap<String, String> parentToChildren; field in TestBasic.Inheritance
872 parentToChildren = ImmutableMultimap.copyOf(_parentToChildren);
876 Collection<String> children = parentToChildren.get(current); in showChain()
885 parents.retainAll(parentToChildren.keySet()); in showChain()
887 leaves.removeAll(parentToChildren.keySet()); in showChain()