HomeSort by relevance Sort by last modified time
    Searched full:sublist (Results 51 - 75 of 93) sorted by null

1 23 4

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
LinkedListTest.java 66 LinkedList subList = new LinkedList();
68 subList.add(new Integer(i));
69 new Support_ListTest("", subList.subList(50, 150)).runTest();
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FsUtils.java 305 for (String line : testList.subList(start, testList.size())) {
  /libcore/luni/src/main/java/java/util/
Vector.java 950 * the index at which to start the sublist.
952 * the index one past the end of the sublist.
960 public synchronized List<E> subList(int start, int end) {
961 return new Collections.SynchronizedRandomAccessList<E>(super.subList(
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekAdapter.java 245 v.setEvents(mEventDayList.subList(start, end), mEvents);
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 380 * <p>A subcollection, such as a sublist, contains some of the values for a
583 removeIfEmpty(); // maybe shouldn't be removed if this is a sublist
760 @GwtIncompatible("List.subList")
761 public List<V> subList(int fromIndex, int toIndex) {
764 Platform.subList(getListDelegate(), fromIndex, toIndex),
    [all...]
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...]
Iterators.java 589 return (pad || count == size) ? list : Platform.subList(list, 0, count);
848 * Arrays.asList(array).subList(offset, offset + length)}.
    [all...]
  /external/guava/javadoc/com/google/common/collect/
ForwardingList.html 256 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ForwardingList.html#subList(int, int)">subList</A></B>(int&nbsp;fromIndex,
478 <A NAME="subList(int, int)"><!-- --></A><H3>
479 subList</H3>
481 public <A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../com/google/common/collect/ForwardingList.html" title="type parameter in ForwardingList">E</A>&gt; <B>subList</B>(int&nbsp;fromIndex,
485 <DT><B>Specified by:</B><DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true#subList(int, int)" title="class or interface in java.util">subList</A></CODE> in interface <CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../com/google/common/collect/ForwardingList.html" title="type parameter in ForwardingList">E</A>&gt;</CODE></DL>
    [all...]
Lists.html 302 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns consecutive <A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true#subList(int, int)" title="class or interface in java.util">sublists</A> of a list,
    [all...]
ImmutableList.html 541 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableList.html#subList(int, int)">subList</A></B>(int&nbsp;fromIndex,
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
VoldExploitTest.java 260 retval.addAll(Arrays.asList(fields).subList(4, fields.length));
  /external/antlr/src/org/antlr/runtime/
LegacyCommonTokenStream.java 307 return tokens.subList(start, stop);
  /external/srec/tools/grxmlcompile/
sub_grph.h 160 void ExpandRules (SubGraph **subList, int *lookupList, int numSubs);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 319 args = command.subList(4, command.size());
327 args = command.subList(5, command.size());
  /external/guava/src/com/google/common/primitives/
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) {
generate.sh 530 /** In GWT, List and AbstractList do not have the subList method. */
531 /*@Override*/ public List<WrapperCl> subList(int fromIndex, int toIndex) {
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 214 public List<E> subList(int from, int to) {
552 @Override public List<E> subList(int from, int to) {
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 562 public List<SlideModel> subList(int start, int end) {
563 return mSlides.subList(start, end);
  /prebuilt/common/jython/
jython.jar 
  /external/guava/javadoc/com/google/common/annotations/class-use/
GwtIncompatible.html 244 <TD><CODE><B>ForwardingList.</B><B><A HREF="../../../../../com/google/common/collect/ForwardingList.html#subList(int, int)">subList</A></B>(int&nbsp;fromIndex,

Completed in 604 milliseconds

1 23 4