Home
last modified time | relevance | path

Searched refs:fromInclusive (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentNavigableMap.java33 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument
DConcurrentSkipListSet.java386 boolean fromInclusive, in subSet() argument
390 (m.subMap(fromElement, fromInclusive, in subSet()
DConcurrentSkipListMap.java2022 boolean fromInclusive, in subMap() argument
2028 (this, fromKey, fromInclusive, toKey, toInclusive, false); in subMap()
2379 boolean fromInclusive, in subSet() argument
2382 return new KeySet<>(m.subMap(fromElement, fromInclusive, in subSet()
2563 K fromKey, boolean fromInclusive, in SubMap() argument
2573 this.loInclusive = fromInclusive; in SubMap()
2889 SubMap<K,V> newSubMap(K fromKey, boolean fromInclusive, in newSubMap() argument
2896 boolean ti = fromInclusive; in newSubMap()
2897 fromInclusive = toInclusive; in newSubMap()
2903 fromInclusive = loInclusive; in newSubMap()
[all …]
/libcore/ojluni/src/main/java/java/util/
DNavigableSet.java229 NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() argument
DTreeSet.java323 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() argument
325 return new TreeSet<>(m.subMap(fromElement, fromInclusive, in subSet()
DNavigableMap.java332 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument
DTreeMap.java932 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument
935 false, fromKey, fromInclusive, in subMap()
1180 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() argument
1182 return new KeySet<>(m.subMap(fromElement, fromInclusive, in subSet()
1888 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument
1890 if (!inRange(fromKey, fromInclusive)) in subMap()
1895 false, fromKey, fromInclusive, in subMap()
1983 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, in subMap() argument
1985 if (!inRange(fromKey, fromInclusive)) in subMap()
1991 false, fromKey, fromInclusive); in subMap()