Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DTreeMap.java2242 private static <K,V> TreeMapEntry<K,V> leftOf(TreeMapEntry<K,V> p) { in leftOf() method in TreeMap
2291 if (parentOf(x) == leftOf(parentOf(parentOf(x)))) { in fixAfterInsertion()
2308 TreeMapEntry<K,V> y = leftOf(parentOf(parentOf(x))); in fixAfterInsertion()
2315 if (x == leftOf(parentOf(x))) { in fixAfterInsertion()
2382 if (x == leftOf(parentOf(x))) { in fixAfterDeletion()
2392 if (colorOf(leftOf(sib)) == BLACK && in fixAfterDeletion()
2398 setColor(leftOf(sib), BLACK); in fixAfterDeletion()
2410 TreeMapEntry<K,V> sib = leftOf(parentOf(x)); in fixAfterDeletion()
2416 sib = leftOf(parentOf(x)); in fixAfterDeletion()
2420 colorOf(leftOf(sib)) == BLACK) { in fixAfterDeletion()
[all …]