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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeStateList.java46 public CellTypeStateList subList(int fromIndex, int toIndex) { method in class:CellTypeStateList
47 return new CellTypeStateList(list.subList(fromIndex, toIndex));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DFreezableList.java135 // We also override subList so that the result is a FreezableList.
136 public List subList(int fromIndex, int toIndex) method in class:FreezableList
138 List list = delegate.subList(fromIndex, toIndex) ;
/openjdk7/jdk/src/share/classes/java/util/
H A DList.java576 * a list can be used as a range operation by passing a subList view
580 * list.subList(from, to).clear();
584 * <tt>Collections</tt> class can be applied to a subList.<p>
592 * @param fromIndex low endpoint (inclusive) of the subList
593 * @param toIndex high endpoint (exclusive) of the subList
599 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.java934 * a list can be used as a range operation by passing a subList view
938 * list.subList(from, to).clear();
942 * {@link Collections} class can be applied to a subList.
953 public List<E> subList(int fromIndex, int toIndex) { method in class:ArrayList
1148 public List<E> subList(int fromIndex, int toIndex) { method in class:ArrayList.SubList
H A DVector.java1009 * a List can be used as a range operation by operating on a subList view
1013 * list.subList(from, to).clear();
1017 * a subList.
1025 * @param fromIndex low endpoint (inclusive) of the subList
1026 * @param toIndex high endpoint (exclusive) of the subList
1033 public synchronized List<E> subList(int fromIndex, int toIndex) { method in class:Vector
1034 return Collections.synchronizedList(super.subList(fromIndex, toIndex),
H A DCollections.java764 * Collections.rotate(list.subList(j, k+1), -1);
770 * Collections.rotate(l.subList(1, 4), -1);
840 reverse(list.subList(0, mid));
841 reverse(list.subList(mid, size));
907 * such that <tt>source.subList(i, i+target.size()).equals(target)</tt>,
917 * @param target the list to search for as a subList of <tt>source</tt>.
960 * such that <tt>source.subList(i, i+target.size()).equals(target)</tt>,
970 * @param target the list to search for as a subList of <tt>source</tt>.
1252 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.UnmodifiableList
1253 return new UnmodifiableList<>(list.subList(fromInde
1285 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.UnmodifiableRandomAccessList
1910 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.SynchronizedList
1951 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.SynchronizedRandomAccessList
2560 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CheckedList
2577 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CheckedRandomAccessList
3531 public List<E> subList(int fromIndex, int toIndex) { method in class:Collections.CopiesList
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixedList.java165 public List<E> subList(int fromIndex, int toIndex) { method in class:FixedList
166 return flist.subList(fromIndex, toIndex);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java471 public java.util.List<A> subList(int fromIndex, int toIndex) { method in class:List
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArrayList.java1072 * @param fromIndex low endpoint (inclusive) of the subList
1073 * @param toIndex high endpoint (exclusive) of the subList
1077 public List<E> subList(int fromIndex, int toIndex) { method in class:CopyOnWriteArrayList
1250 public List<E> subList(int fromIndex, int toIndex) { method in class:CopyOnWriteArrayList.COWSubList

Completed in 88 milliseconds