Home
last modified time | relevance | path

Searched refs:toInclusive (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentNavigableMap.java63 K toKey, boolean toInclusive); in subMap() argument
DConcurrentSkipListSet.java417 boolean toInclusive) { in subSet() argument
420 toElement, toInclusive)); in subSet()
DConcurrentSkipListMap.java2053 boolean toInclusive) { in subMap() argument
2057 (this, fromKey, fromInclusive, toKey, toInclusive, false); in subMap()
2410 boolean toInclusive) { in subSet() argument
2412 toElement, toInclusive)); in subSet()
2593 K toKey, boolean toInclusive, in SubMap() argument
2603 this.hiInclusive = toInclusive; in SubMap()
2919 K toKey, boolean toInclusive) { in newSubMap() argument
2926 fromInclusive = toInclusive; in newSubMap()
2927 toInclusive = ti; in newSubMap()
2943 toInclusive = hiInclusive; in newSubMap()
[all …]
/libcore/ojluni/src/main/java/java/util/
DNavigableSet.java231 E toElement, boolean toInclusive); in subSet() argument
DTreeSet.java324 E toElement, boolean toInclusive) { in subSet() argument
326 toElement, toInclusive)); in subSet()
DNavigableMap.java334 K toKey, boolean toInclusive); in subMap() argument
DTreeMap.java939 K toKey, boolean toInclusive) { in subMap() argument
942 false, toKey, toInclusive); in subMap()
1187 E toElement, boolean toInclusive) { in subSet() argument
1189 toElement, toInclusive)); in subSet()
1895 K toKey, boolean toInclusive) { in subMap() argument
1898 if (!inRange(toKey, toInclusive)) in subMap()
1902 false, toKey, toInclusive); in subMap()
1988 K toKey, boolean toInclusive) { in subMap() argument
1991 if (!inRange(toKey, toInclusive)) in subMap()
1994 false, toKey, toInclusive, in subMap()
DCollections.java1296 …ic NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
1298 ns.subSet(fromElement, fromInclusive, toElement, toInclusive)); in subSet()
1985 … public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
1987 nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
2375 …ic NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
2377 …w SynchronizedNavigableSet<>(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), mutex);
2974 … public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
2977 nm.subMap(fromKey, fromInclusive, toKey, toInclusive), mutex);
3412 …ic NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
3413 … return checkedNavigableSet(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), type);
[all …]