Searched refs:insertMax (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DBstCountBasedBalancePolicies.java20 import static com.google.common.collect.BstOperations.insertMax;
171 return insertMax(left, source, nodeFactory, singleBalancePolicy);
H A DBstOperations.java216 public static <N extends BstNode<?, N>> N insertMax(@Nullable N root, N entry, method in class:BstOperations
225 insertMax(root.childOrNull(RIGHT), entry, nodeFactory, balancePolicy));
/external/guava/guava-tests/test/com/google/common/collect/
H A DBstOperationsTest.java432 SimpleNode newRoot = BstOperations.insertMax(d, h, nodeFactory, balancePolicy);
448 SimpleNode newRoot = BstOperations.insertMax(d, h, nodeFactory, balancePolicy);
454 SimpleNode newRoot = BstOperations.insertMax(null, a, nodeFactory, balancePolicy);

Completed in 960 milliseconds