Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DTreeMap.java1707 final boolean tooLow(Object key) { in tooLow() method in TreeMap.NavigableSubMap
1726 return !tooLow(key) && !tooHigh(key); in inRange()
1757 return (e == null || tooLow(e.key)) ? null : e; in absHighest()
1761 if (tooLow(key)) in absCeiling()
1768 if (tooLow(key)) in absHigher()
1778 return (e == null || tooLow(e.key)) ? null : e; in absFloor()
1785 return (e == null || tooLow(e.key)) ? null : e; in absLower()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2441 boolean tooLow(Object key, Comparator<? super K> cmp) { in tooLow() method in ConcurrentSkipListMap.SubMap
2454 return !tooLow(key, cmp) && !tooHigh(key, cmp); in inBounds()
2591 if (tooLow(key, cmp)) in getNearEntry()
2612 if (tooLow(key, cmp)) { in getNearKey()
2967 if (tooLow(next.key, cmp)) in descend()