Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DTreeMap.java1422 final boolean tooHigh(Object key) { in tooHigh() method in TreeMap.NavigableSubMap
1432 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()
/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2586 boolean tooHigh(Object key, Comparator<? super K> cmp) { in tooHigh() method in ConcurrentSkipListMap.SubMap
2593 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()