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

/openjdk7/jdk/src/share/classes/java/util/
H A DTreeMap.java1280 final boolean tooLow(Object key) { method in class:TreeMap.NavigableSubMap
1299 return !tooLow(key) && !tooHigh(key);
1330 return (e == null || tooLow(e.key)) ? null : e;
1334 if (tooLow(key))
1341 if (tooLow(key))
1351 return (e == null || tooLow(e.key)) ? null : e;
1358 return (e == null || tooLow(e.key)) ? null : e;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListMap.java2517 private boolean tooLow(K key) { method in class:ConcurrentSkipListMap.SubMap
2536 return !tooLow(key) && !tooHigh(key);
2673 if (tooLow(key))
2696 if (tooLow(key)) {
3061 if (tooLow(next.key))

Completed in 120 milliseconds