/libcore/luni/src/test/java/libcore/java/util/ |
D | TreeSetTest.java | 59 final SortedSet<String> subSet = set.subSet("a", "c"); in testSubSetSerialization() local 60 new SerializationTester<SortedSet<String>>(subSet, s) { in testSubSetSerialization() argument 77 final SortedSet<String> subSet = set.subSet("a", false, "c", true); in testNavigableSubSetSerialization() local 78 new SerializationTester<SortedSet<String>>(subSet, s) { in testNavigableSubSetSerialization() argument
|
/libcore/ojluni/src/main/java/java/util/ |
D | NavigableSet.java | 230 NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() method 300 SortedSet<E> subSet(E fromElement, E toElement); in subSet() method
|
D | SortedSet.java | 151 SortedSet<E> subSet(E fromElement, E toElement); in subSet() method
|
D | TreeSet.java | 323 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() method in TreeSet 360 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() method in TreeSet
|
D | Collections.java | 1214 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() method in UnmodifiableSortedSet 1301 …public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusi… in subSet() method in UnmodifiableNavigableSet
|
D | TreeMap.java | 1160 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, in subSet() method in TreeMap.KeySet 1171 public SortedSet<E> subSet(E fromElement, E toElement) { in subSet() method in TreeMap.KeySet
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListSet.java | 414 public NavigableSet<E> subSet(E fromElement, in subSet() method in ConcurrentSkipListSet 447 public NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() method in ConcurrentSkipListSet
|
D | ConcurrentSkipListMap.java | 2407 public NavigableSet<K> subSet(K fromElement, in subSet() method in ConcurrentSkipListMap.KeySet 2420 public NavigableSet<K> subSet(K fromElement, K toElement) { in subSet() method in ConcurrentSkipListMap.KeySet
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | Collections.java | 1193 public java.util.NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() method in Collections.CheckedNavigableSet 1205 public java.util.NavigableSet<E> subSet( in subSet() method in Collections.CheckedNavigableSet 1375 public java.util.SortedSet<E> subSet(E fromElement, E toElement) { in subSet() method in Collections.CheckedSortedSet 2686 public java.util.NavigableSet<E> subSet(E fromElement, E toElement) { in subSet() method in Collections.SynchronizedNavigableSet 2698 public java.util.NavigableSet<E> subSet( in subSet() method in Collections.SynchronizedNavigableSet 2835 public java.util.SortedSet<E> subSet(E fromElement, E toElement) { in subSet() method in Collections.SynchronizedSortedSet 3482 public java.util.NavigableSet<E> subSet( in subSet() method in Collections.UnmodifiableNavigableSet 3623 public java.util.SortedSet<E> subSet(E fromElement, E toElement) { in subSet() method in Collections.UnmodifiableSortedSet
|