Home
last modified time | relevance | path

Searched refs:headSet (Results 1 – 16 of 16) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DTreeMapExtendTest.java3945 Set entrySet, headSet;
3958 headSet = descendingSubMapEntrySet.headSet(entry);
3959 headSetIterator = headSet.iterator();
3971 headSet = descendingSubMapEntrySet.headSet(entry, false);
3972 headSetIterator = headSet.iterator();
3984 headSet = descendingSubMapEntrySet.headSet(entry, true);
3985 headSetIterator = headSet.iterator();
4006 headSet = descendingSubMapEntrySet.headSet(entry);
4007 headSetIterator = headSet.iterator();
4019 headSet = descendingSubMapEntrySet.headSet(entry, false);
[all …]
DTreeSetTest.java203 Set s = ts.headSet(new Integer(100)); in test_headSetLjava_lang_Object()
/libcore/luni/src/test/java/libcore/java/util/
DOldTreeSetTest.java137 Set s = ts.headSet(new Integer(100)); in test_headSetLjava_lang_Object()
142 SortedSet sort = ts.headSet(new Integer(100)); in test_headSetLjava_lang_Object()
144 sort.headSet(new Integer(101)); in test_headSetLjava_lang_Object()
151 ts.headSet(this); in test_headSetLjava_lang_Object()
158 ts.headSet(null); in test_headSetLjava_lang_Object()
DCollectionsTest.java1069 check_unmodifiableSet(set.headSet(sampleElement), absentElement); in check_unmodifiableNavigableSet()
1087 set.headSet(element), in check_navigableSet()
1090 set.headSet(element, false /* inclusive */), in check_navigableSet()
1093 set.headSet(element, true /* inclusive */), in check_navigableSet()
/libcore/ojluni/src/main/java/java/util/
DNavigableSet.java260 NavigableSet<E> headSet(E toElement, boolean inclusive); in headSet() method
311 SortedSet<E> headSet(E toElement); in headSet() method
DTreeSet.java337 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() method in TreeSet
371 public SortedSet<E> headSet(E toElement) { in headSet() method in TreeSet
372 return headSet(toElement, false); in headSet()
DSortedSet.java178 SortedSet<E> headSet(E toElement); in headSet() method
DCollections.java1217 public SortedSet<E> headSet(E toElement) { in headSet() method in UnmodifiableSortedSet
1218 return new UnmodifiableSortedSet<>(ss.headSet(toElement)); in headSet()
1306 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() method in UnmodifiableNavigableSet
1308 ns.headSet(toElement, inclusive)); in headSet()
2267 public SortedSet<E> headSet(E toElement) {
2269 return new SynchronizedSortedSet<>(ss.headSet(toElement), mutex);
2371 public NavigableSet<E> headSet(E toElement) {
2373 return new SynchronizedNavigableSet<>(ns.headSet(toElement, false), mutex);
2388 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
2390 return new SynchronizedNavigableSet<>(ns.headSet(toElement, inclusive), mutex);
[all …]
DTreeMap.java1165 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() method in TreeMap.KeySet
1174 public SortedSet<E> headSet(E toElement) { in headSet() method in TreeMap.KeySet
1175 return headSet(toElement, false); in headSet()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListSet.java428 public NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() method in ConcurrentSkipListSet
456 public NavigableSet<E> headSet(E toElement) { in headSet() method in ConcurrentSkipListSet
457 return headSet(toElement, false); in headSet()
DConcurrentSkipListMap.java2414 public NavigableSet<K> headSet(K toElement, boolean inclusive) { in headSet() method in ConcurrentSkipListMap.KeySet
2423 public NavigableSet<K> headSet(K toElement) { in headSet() method in ConcurrentSkipListMap.KeySet
2424 return headSet(toElement, false); in headSet()
/libcore/ojluni/annotations/hiddenapi/java/util/
DCollections.java1197 public java.util.NavigableSet<E> headSet(E toElement) { in headSet() method in Collections.CheckedNavigableSet
1210 public java.util.NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() method in Collections.CheckedNavigableSet
1379 public java.util.SortedSet<E> headSet(E toElement) { in headSet() method in Collections.CheckedSortedSet
2690 public java.util.NavigableSet<E> headSet(E toElement) { in headSet() method in Collections.SynchronizedNavigableSet
2703 public java.util.NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() method in Collections.SynchronizedNavigableSet
2839 public java.util.SortedSet<E> headSet(E toElement) { in headSet() method in Collections.SynchronizedSortedSet
3487 public java.util.NavigableSet<E> headSet(E toElement, boolean inclusive) { in headSet() method in Collections.UnmodifiableNavigableSet
3627 public java.util.SortedSet<E> headSet(E toElement) { in headSet() method in Collections.UnmodifiableSortedSet
/libcore/jsr166-tests/src/test/java/jsr166/
DTreeSetTest.java613 SortedSet sm = set.headSet(four); in testHeadSetContents()
798 NavigableSet<Integer> hm = set.headSet(midPoint, incl); in bashSubSet()
DConcurrentSkipListSetTest.java610 SortedSet sm = set.headSet(four); in testHeadSetContents()
796 NavigableSet<Integer> hm = set.headSet(midPoint, incl); in bashSubSet()
DTreeSubSetTest.java564 SortedSet sm = set.headSet(four); in testHeadSetContents()
1053 SortedSet sm = set.headSet(m4); in testDescendingHeadSetContents()
DConcurrentSkipListSubSetTest.java567 SortedSet sm = set.headSet(four); in testHeadSetContents()
1066 SortedSet sm = set.headSet(m4); in testDescendingHeadSetContents()