Home | History | Annotate | Download | only in collect

Lines Matching defs:newRoot

254       AvlNode<E> newRoot = new AvlNode<E>(element, occurrences);
255 successor(header, newRoot, header);
256 rootReference.checkAndSet(root, newRoot);
260 AvlNode<E> newRoot = root.add(comparator(), element, occurrences, result);
261 rootReference.checkAndSet(root, newRoot);
273 AvlNode<E> newRoot;
280 newRoot = root.remove(comparator(), e, occurrences, result);
286 rootReference.checkAndSet(root, newRoot);
306 AvlNode<E> newRoot = root.setCount(comparator(), element, count, result);
307 rootReference.checkAndSet(root, newRoot);
329 AvlNode<E> newRoot = root.setCount(comparator(), element, oldCount, newCount, result);
330 rootReference.checkAndSet(root, newRoot);