HomeSort by relevance Sort by last modified time
    Searched refs:SubList (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /libcore/ojluni/src/main/java/java/util/
AbstractList.java 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)
    [all...]
ArrayList.java     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ListExtensions.cs 206 public static IList subList( this IList list, int fromIndex, int toIndex )
208 return new SubList( list, fromIndex, toIndex );
217 public static IList<T> subList<T>( this IList<T> list, int fromIndex, int toIndex )
219 return new SubList<T>( list, fromIndex, toIndex );
227 public static IList<T> subList<T>( this List<T> list, int fromIndex, int toIndex )
229 return new SubList<T>( list, fromIndex, toIndex );
  /external/guava/guava/src/com/google/common/collect/
ImmutableList.java 380 public ImmutableList<E> subList(int fromIndex, int toIndex) {
394 * Called by the default implementation of {@link #subList} when {@code
399 return new SubList(fromIndex, toIndex - fromIndex);
402 class SubList extends ImmutableList<E> {
406 SubList(int offset, int length) {
423 public ImmutableList<E> subList(int fromIndex, int toIndex) {
425 return ImmutableList.this.subList(fromIndex + offset, toIndex + offset);
546 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
548 return forwardList.subList(
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 318 class SubList;
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /frameworks/base/
compiled-classes-phone     [all...]
  /external/guice/extensions/persist/lib/
commons-collections.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.2/
commons-collections-3.2.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.2/
haha-2.0.2.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /external/dagger2/lib/
auto-value-1.0.jar 
google-java-format-0.1-20151017.042846-2.jar 
  /external/guice/lib/
guava-16.0.1.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
guava-17.0.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta1/
compiler-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta3/
compiler-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-rc1/
compiler-2.1.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.2/
compiler-2.1.2.jar 

Completed in 1205 milliseconds

1 2 3 4