Searched refs:tooHigh (Results 1 – 2 of 2) sorted by relevance
1422 final boolean tooHigh(Object key) { in tooHigh() method in TreeMap.NavigableSubMap1432 return !tooLow(key) && !tooHigh(key); in inRange()1455 return (e == null || tooHigh(e.key)) ? null : e; in absLowest()1470 return (e == null || tooHigh(e.key)) ? null : e; in absCeiling()1477 return (e == null || tooHigh(e.key)) ? null : e; in absHigher()1481 if (tooHigh(key)) in absFloor()1488 if (tooHigh(key)) in absLower()1671 return n == null || tooHigh(n.key); in isEmpty()
2586 boolean tooHigh(Object key, Comparator<? super K> cmp) { in tooHigh() method in ConcurrentSkipListMap.SubMap2593 return !tooLow(key, cmp) && !tooHigh(key, cmp); in inBounds()2740 if (tooHigh(key, cmp)) in getNearEntry()2770 if (tooHigh(key, cmp)) { in getNearKey()3099 if (tooHigh(next.key, cmp)) in ascend()