Searched defs:findBounded (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DTreeMap.java1282 * findBounded(B, FLOOR) stays source.find(B, FLOOR)
1285 * findBounded(C, FLOOR) becomes source.find(C, LOWER)
1288 * findBounded(D, LOWER) becomes source.find(C, LOWER)
1291 * findBounded(D, FLOOR) becomes source.find(C, FLOOR)
1294 * findBounded(D, LOWER) becomes source.find(C, FLOOR)
1296 private Entry<K, V> findBounded(K key, Relation relation) { method in class:TreeMap.BoundedMap
1331 return immutableCopy(findBounded(key, LOWER));
1335 Entry<K, V> entry = findBounded(key, LOWER);
1340 return immutableCopy(findBounded(key, FLOOR));
1344 Entry<K, V> entry = findBounded(ke
[all...]

Completed in 3559 milliseconds