Searched refs:bPartitionSet (Results 1 – 1 of 1) sorted by relevance
111 Set<T> bPartitionSet = toPartitionSet.get(b); in add() local113 if (bPartitionSet == null) { // both null, set up bSet in add()114 bPartitionSet = setMaker != null ? setMaker.make() : new HashSet(); in add()115 bPartitionSet.add(b); in add()116 toPartitionSet.put(b, bPartitionSet); in add()118 bPartitionSet.add(a); in add()119 toPartitionSet.put(a, bPartitionSet); in add()120 } else if (bPartitionSet == null) { // aSet is not null, bSet null in add()123 …} else if (aPartitionSet != bPartitionSet) { // both non-null, not equal, merge. Equality check o… in add()124 aPartitionSet.addAll(bPartitionSet); in add()[all …]