Searched refs:inBounds (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListMap.java | 2453 boolean inBounds(Object key, Comparator<? super K> cmp) { in inBounds() method in ConcurrentSkipListMap.SubMap 2460 if (!inBounds(key, cmp)) in checkKeyBounds() 2526 if (inBounds(last, cmp)) in highestKey() 2547 if ((n = hiNode(cmp)) == null || !inBounds(n.key, cmp)) in highestEntry() 2560 else if (!inBounds((k = n.key), cmp)) in removeLowest() 2573 else if (!inBounds((k = n.key), cmp)) in removeHighest() 2597 if (e == null || !inBounds(e.getKey(), cmp)) in getNearEntry() 2625 if (inBounds(last, cmp)) in getNearKey() 2633 if (n == null || !inBounds(n.key, cmp)) in getNearKey() 2644 return inBounds(key, m.comparator) && m.containsKey(key); in containsKey() [all …]
|