/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | TreeMapExtendTest.java | 3945 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 …]
|
D | TreeSetTest.java | 203 Set s = ts.headSet(new Integer(100)); in test_headSetLjava_lang_Object()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | OldTreeSetTest.java | 137 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()
|
D | CollectionsTest.java | 1069 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/ |
D | NavigableSet.java | 260 NavigableSet<E> headSet(E toElement, boolean inclusive); in headSet() method 311 SortedSet<E> headSet(E toElement); in headSet() method
|
D | TreeSet.java | 337 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()
|
D | SortedSet.java | 178 SortedSet<E> headSet(E toElement); in headSet() method
|
D | Collections.java | 1217 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 …]
|
D | TreeMap.java | 1165 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/ |
D | ConcurrentSkipListSet.java | 428 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()
|
D | ConcurrentSkipListMap.java | 2414 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/ |
D | Collections.java | 1197 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/ |
D | TreeSetTest.java | 613 SortedSet sm = set.headSet(four); in testHeadSetContents() 798 NavigableSet<Integer> hm = set.headSet(midPoint, incl); in bashSubSet()
|
D | ConcurrentSkipListSetTest.java | 610 SortedSet sm = set.headSet(four); in testHeadSetContents() 796 NavigableSet<Integer> hm = set.headSet(midPoint, incl); in bashSubSet()
|
D | TreeSubSetTest.java | 564 SortedSet sm = set.headSet(four); in testHeadSetContents() 1053 SortedSet sm = set.headSet(m4); in testDescendingHeadSetContents()
|
D | ConcurrentSkipListSubSetTest.java | 567 SortedSet sm = set.headSet(four); in testHeadSetContents() 1066 SortedSet sm = set.headSet(m4); in testDescendingHeadSetContents()
|