Searched refs:tooHigh (Results 1 – 2 of 2) sorted by relevance
1402 final boolean tooHigh(Object key) { in tooHigh() method in TreeMap.NavigableSubMap1412 return !tooLow(key) && !tooHigh(key); in inRange()1435 return (e == null || tooHigh(e.key)) ? null : e; in absLowest()1450 return (e == null || tooHigh(e.key)) ? null : e; in absCeiling()1457 return (e == null || tooHigh(e.key)) ? null : e; in absHigher()1461 if (tooHigh(key)) in absFloor()1468 if (tooHigh(key)) in absLower()1651 return n == null || tooHigh(n.key); in isEmpty()
2615 boolean tooHigh(Object key, Comparator<? super K> cmp) { in tooHigh() method in ConcurrentSkipListMap.SubMap2622 return !tooLow(key, cmp) && !tooHigh(key, cmp); in inBounds()2769 if (tooHigh(key, cmp)) in getNearEntry()2799 if (tooHigh(key, cmp)) { in getNearKey()3128 if (tooHigh(next.key, cmp)) in ascend()