Home | History | Annotate | Download | only in util

Lines Matching defs:SubList

453      * offset of the subList within the backing list, the size of the subList
483 public List<E> subList(int fromIndex, int toIndex) {
486 new SubList<>(this, fromIndex, toIndex));
613 class SubList<E> extends AbstractList<E> {
618 SubList(AbstractList<E> list, int fromIndex, int toIndex) {
733 SubList.this.modCount = l.modCount;
743 SubList.this.modCount = l.modCount;
749 public List<E> subList(int fromIndex, int toIndex) {
750 return new SubList<>(this, fromIndex, toIndex);
773 class RandomAccessSubList<E> extends SubList<E> implements RandomAccess {
778 public List<E> subList(int fromIndex, int toIndex) {