Searched defs:subList (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DList.java578 * a list can be used as a range operation by passing a subList view
582 * list.subList(from, to).clear();
586 * <tt>Collections</tt> class can be applied to a subList.<p>
594 * @param fromIndex low endpoint (inclusive) of the subList
595 * @param toIndex high endpoint (exclusive) of the subList
601 List<E> subList(int fromIndex, int toIndex); method in interface:List
H A DAbstractList.java453 * offset of the subList within the backing list, the size of the subList
483 public List<E> subList(int fromIndex, int toIndex) { method in class:AbstractList
749 public List<E> subList(int fromIndex, int toIndex) { method in class:SubList
778 public List<E> subList(int fromIndex, int toIndex) { method in class:RandomAccessSubList
H A DArrayList.java959 * a list can be used as a range operation by passing a subList view
963 * list.subList(from, to).clear();
967 * {@link Collections} class can be applied to a subList.
978 public List<E> subList(int fromIndex, int toIndex) { method in class:ArrayList
1208 public List<E> subList(int fromIndex, int toIndex) { method in class:ArrayList.SubList
H A DVector.java1013 * a List can be used as a range operation by operating on a subList view
1017 * list.subList(from, to).clear();
1021 * a subList.
1029 * @param fromIndex low endpoint (inclusive) of the subList
1030 * @param toIndex high endpoint (exclusive) of the subList
1037 public synchronized List<E> subList(int fromIndex, int toIndex) { method in class:Vector
1038 return Collections.synchronizedList(super.subList(fromIndex, toIndex),
H A DCollections.java810 * Collections.rotate(list.subList(j, k+1), -1);
816 * Collections.rotate(l.subList(1, 4), -1);
886 reverse(list.subList(0, mid));
887 reverse(list.subList(mid, size));
954 * such that {@code source.subList(i, i+target.size()).equals(target)},
964 * @param target the list to search for as a subList of <tt>source</tt>.
1007 * such that {@code source.subList(i, i+target.size()).equals(target)},
1017 * @param target the list to search for as a subList of <tt>source</tt>.
1349 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.UnmodifiableList
1350 return new UnmodifiableList<>(list.subList(fromInde
1382 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.UnmodifiableRandomAccessList
2178 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.SynchronizedList
2228 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.SynchronizedRandomAccessList
2917 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CheckedList
2960 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CheckedRandomAccessList
4251 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CopiesList
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java218 public List<E> subList(int from, int to) { method in class:CopyOnWriteArrayList
599 @Override public List<E> subList(int from, int to) { method in class:CopyOnWriteArrayList.CowSubList

Completed in 413 milliseconds