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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentNavigableMap.java63 K toKey, boolean toInclusive);
62 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
H A DConcurrentSkipListSet.java417 boolean toInclusive) {
420 toElement, toInclusive));
414 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DConcurrentSkipListMap.java2053 boolean toInclusive) {
2057 (this, fromKey, fromInclusive, toKey, toInclusive, false);
2410 boolean toInclusive) {
2412 toElement, toInclusive));
2593 K toKey, boolean toInclusive,
2603 this.hiInclusive = toInclusive;
2919 K toKey, boolean toInclusive) {
2926 fromInclusive = toInclusive;
2927 toInclusive = ti;
2943 toInclusive
2050 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2407 subSet(K fromElement, boolean fromInclusive, K toElement, boolean toInclusive) argument
2591 SubMap(ConcurrentSkipListMap<K,V> map, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, boolean isDescending) argument
2918 newSubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2955 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DNavigableMap.java303 * {@code fromInclusive} and {@code toInclusive} are both true. The
316 * @param toInclusive {@code true} if the high endpoint
334 K toKey, boolean toInclusive);
333 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
H A DNavigableSet.java199 * fromInclusive} and {@code toInclusive} are both true. The returned set
211 * @param toInclusive {@code true} if the high endpoint
231 E toElement, boolean toInclusive);
230 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DTreeSet.java324 E toElement, boolean toInclusive) {
326 toElement, toInclusive));
323 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DTreeMap.java913 K toKey, boolean toInclusive) {
916 false, toKey, toInclusive);
1161 E toElement, boolean toInclusive) {
1163 toElement, toInclusive));
1869 K toKey, boolean toInclusive) {
1872 if (!inRange(toKey, toInclusive))
1876 false, toKey, toInclusive);
1962 K toKey, boolean toInclusive) {
1965 if (!inRange(toKey, toInclusive))
1968 false, toKey, toInclusive,
912 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1160 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
1868 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1961 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DCollections.java1296 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { argument
1298 ns.subSet(fromElement, fromInclusive, toElement, toInclusive));
1985 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
1987 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
2375 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { argument
2377 return new SynchronizedNavigableSet<>(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), mutex);
2974 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
2977 nm.subMap(fromKey, fromInclusive, toKey, toInclusive), mutex);
3412 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { argument
3413 return checkedNavigableSet(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), typ
4193 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]

Completed in 68 milliseconds