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

/libcore/ojluni/src/main/java/java/util/
H A DList.java707 * a list can be used as a range operation by passing a subList view
711 * list.subList(from, to).clear();
715 * <tt>Collections</tt> class can be applied to a subList.<p>
723 * @param fromIndex low endpoint (inclusive) of the subList
724 * @param toIndex high endpoint (exclusive) of the subList
730 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.java988 * a list can be used as a range operation by passing a subList view
992 * list.subList(from, to).clear();
996 * {@link Collections} class can be applied to a subList.
1007 public List<E> subList(int fromIndex, int toIndex) { method in class:ArrayList
1237 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.java779 * Collections.rotate(list.subList(j, k+1), -1);
785 * Collections.rotate(l.subList(1, 4), -1);
855 reverse(list.subList(0, mid));
856 reverse(list.subList(mid, size));
923 * such that {@code source.subList(i, i+target.size()).equals(target)},
933 * @param target the list to search for as a subList of <tt>source</tt>.
976 * such that {@code source.subList(i, i+target.size()).equals(target)},
986 * @param target the list to search for as a subList of <tt>source</tt>.
1407 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.UnmodifiableList
1408 return new UnmodifiableList<>(list.subList(fromInde
1440 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.UnmodifiableRandomAccessList
2492 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.SynchronizedList
2542 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.SynchronizedRandomAccessList
3520 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CheckedList
3556 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CheckedRandomAccessList
5098 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CopiesList
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java1154 * @param fromIndex low endpoint (inclusive) of the subList
1155 * @param toIndex high endpoint (exclusive) of the subList
1159 public List<E> subList(int fromIndex, int toIndex) { method in class:CopyOnWriteArrayList
1299 public List<E> subList(int fromIndex, int toIndex) { method in class:CopyOnWriteArrayList.COWSubList

Completed in 19 milliseconds