Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DXEquivalenceClass.java110 Set<T> aPartitionSet = toPartitionSet.get(a); in add() local
112 if (aPartitionSet == null) { in add()
121 aPartitionSet.add(b); in add()
122 toPartitionSet.put(b, aPartitionSet); in add()
123 …} else if (aPartitionSet != bPartitionSet) { // both non-null, not equal, merge. Equality check o… in add()
124 aPartitionSet.addAll(bPartitionSet); in add()
127 toPartitionSet.put(item, aPartitionSet); in add()
176 Set<T> aPartitionSet = toPartitionSet.get(a); in getEquivalences() local
177 if (aPartitionSet == null) { // manufacture an equivalence in getEquivalences()
178 aPartitionSet = new HashSet<>(); in getEquivalences()
[all …]