Searched defs:height (Results 1 - 1 of 1) sorted by last modified time

/libcore/luni/src/main/java/java/util/
H A DTreeMap.java388 Node<K, V> adjacent = (left.height > right.height) ? left.last() : right.first();
394 leftHeight = left.height;
402 rightHeight = right.height;
407 adjacent.height = Math.max(leftHeight, rightHeight) + 1;
463 int leftHeight = left != null ? left.height : 0;
464 int rightHeight = right != null ? right.height : 0;
470 int rightRightHeight = rightRight != null ? rightRight.height : 0;
471 int rightLeftHeight = rightLeft != null ? rightLeft.height : 0;
488 int leftRightHeight = leftRight != null ? leftRight.height
739 int height; field in class:TreeMap.Node
[all...]

Completed in 50 milliseconds