HomeSort by relevance Sort by last modified time
    Searched defs:subList (Results 1 - 25 of 34) sorted by null

1 2

  /external/guava/src/com/google/common/collect/
ImmutableSortedAsList.java 54 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
Platform.java 34 * Calls {@link List#subList(int, int)}. Factored out so that it can be
41 @GwtIncompatible("List.subList")
42 static <T> List<T> subList(List<T> list, int fromIndex, int toIndex) {
43 return list.subList(fromIndex, toIndex);
ForwardingList.java 83 @GwtIncompatible("List.subList")
84 public List<E> subList(int fromIndex, int toIndex) {
85 return Platform.subList(delegate(), fromIndex, toIndex);
EmptyImmutableList.java 85 @Override public ImmutableList<Object> subList(int fromIndex, int toIndex) {
SingletonImmutableList.java 74 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
ImmutableList.java 247 * TODO: When given an ImmutableList that's a sublist, copy the referenced
301 public abstract ImmutableList<E> subList(int fromIndex, int toIndex);
RegularImmutableList.java 113 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
Synchronized.java 441 @GwtIncompatible("List.subList")
442 public List<E> subList(int fromIndex, int toIndex) {
444 return list(Platform.subList(delegate(), fromIndex, toIndex), mutex);
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
List.java 321 * the index at which to start the sublist.
323 * the index one past the end of the sublist.
329 public List<E> subList(int start, int end);
AbstractList.java 173 private final SubAbstractList<E> subList;
185 subList = list;
192 subList.sizeChanged(true);
232 subList.sizeChanged(false);
694 * occurs in the returned subList will be reflected to the original list,
696 * list will also be supported by this subList.
700 * {@code list.subList(from, to).clear();}
703 * subList, the behavior of the returned subList becomes undefined.
705 * The returned subList is a subclass of AbstractList. The subclass store
    [all...]
Vector.java 943 * the index at which to start the sublist.
945 * the index one past the end of the sublist.
953 public synchronized List<E> subList(int start, int end) {
954 return new Collections.SynchronizedRandomAccessList<E>(super.subList(
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
ArrayListTest.java 56 ArrayList subList = new ArrayList();
58 subList.add(new Integer(i));
59 new Support_ListTest("", subList.subList(50, 150)).runTest();
LinkedListTest.java 57 LinkedList subList = new LinkedList();
59 subList.add(new Integer(i));
60 new Support_ListTest("", subList.subList(50, 150)).runTest();
AbstractListTest.java 140 * @tests java.util.AbstractList#subList(int, int)
144 notes = "Verifies each of the SubList operations to ensure a ConcurrentModificationException does not occur on an AbstractList which does not update modCount.",
145 method = "subList",
149 // Test each of the SubList operations to ensure a
155 List sList = mList.subList(0, 2);
180 // test the type of sublist that is returned
186 "Sublist returned should have implemented Random Access interface",
187 al.subList(3, 7) instanceof RandomAccess);
194 "Sublist returned should not have implemented Random Access interface",
195 !(ll.subList(3, 7) instanceof RandomAccess))
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 431 ArrayList<Object> subList = new ArrayList<Object>();
433 int result = parseBinaryEvent(eventData, offset, subList);
441 list.add(subList.toArray());
  /external/guava/src/com/google/common/primitives/
Booleans.java 408 /** In GWT, List and AbstractList do not have the subList method. */
409 /*@Override*/ public List<Boolean> subList(int fromIndex, int toIndex) {
Bytes.java 323 /** In GWT, List and AbstractList do not have the subList method. */
324 /*@Override*/ public List<Byte> subList(int fromIndex, int toIndex) {
Chars.java 509 /** In GWT, List and AbstractList do not have the subList method. */
510 /*@Override*/ public List<Character> subList(int fromIndex, int toIndex) {
Doubles.java 445 /** In GWT, List and AbstractList do not have the subList method. */
446 /*@Override*/ public List<Double> subList(int fromIndex, int toIndex) {
Floats.java 442 /** In GWT, List and AbstractList do not have the subList method. */
443 /*@Override*/ public List<Float> subList(int fromIndex, int toIndex) {
Ints.java 516 /** In GWT, List and AbstractList do not have the subList method. */
517 /*@Override*/ public List<Integer> subList(int fromIndex, int toIndex) {
Longs.java 494 /** In GWT, List and AbstractList do not have the subList method. */
495 /*@Override*/ public List<Long> subList(int fromIndex, int toIndex) {
Shorts.java 508 /** In GWT, List and AbstractList do not have the subList method. */
509 /*@Override*/ public List<Short> subList(int fromIndex, int toIndex) {
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java     [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideModel.java 396 public List<MediaModel> subList(int start, int end) {
397 return mMedia.subList(start, end);

Completed in 379 milliseconds

1 2