Searched refs:findNear (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java696 * The traversal loops in doPut, doRemove, and findNear all
1184 // Control values OR'ed as arguments to findNear
1196 final Node<K,V> findNear(K key, int rel, Comparator<? super K> cmp) { method in class:ConcurrentSkipListMap
1226 * Returns SimpleImmutableEntry for results of findNear.
1234 Node<K,V> n = findNear(key, rel, cmp);
2104 Node<K,V> n = findNear(key, LT, comparator);
2128 Node<K,V> n = findNear(key, LT|EQ, comparator);
2150 Node<K,V> n = findNear(key, GT|EQ, comparator);
2174 Node<K,V> n = findNear(key, GT, comparator);
2629 return m.findNear(l
[all...]

Completed in 27 milliseconds