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.java1393 final boolean tooLow(Object key) { in tooLow() method in TreeMap.NavigableSubMap
1412 return !tooLow(key) && !tooHigh(key); in inRange()
1443 return (e == null || tooLow(e.key)) ? null : e; in absHighest()
1447 if (tooLow(key)) in absCeiling()
1454 if (tooLow(key)) in absHigher()
1464 return (e == null || tooLow(e.key)) ? null : e; in absFloor()
1471 return (e == null || tooLow(e.key)) ? null : e; in absLower()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2609 boolean tooLow(Object key, Comparator<? super K> cmp) { in tooLow() method in ConcurrentSkipListMap.SubMap
2622 return !tooLow(key, cmp) && !tooHigh(key, cmp); in inBounds()
2767 if (tooLow(key, cmp)) in getNearEntry()
2791 if (tooLow(key, cmp)) { in getNearKey()
3147 if (tooLow(next.key, cmp)) in descend()