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

1 2 3 4 5 6

  /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 );
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
CommentParsing.py 514 SubList = GenerateTokenList (List[0].strip())
515 if len(SubList) in [1, 2] and SubList[-1] == 'Variable':
535 SubList = GenerateTokenList (Comment[:Start])
536 if len(SubList) < 2:
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenRegisters.cpp 55 std::vector<Record*> SubList = TheDef->getValueAsListOfDefs("SubRegs");
57 if (SubList.size() != Indices.size())
62 for (unsigned i = 0, e = SubList.size(); i != e; ++i) {
63 CodeGenRegister *SR = RegBank.getReg(SubList[i]);
74 for (unsigned i = 0, e = SubList.size(); i != e; ++i) {
75 CodeGenRegister *SR = RegBank.getReg(SubList[i]);
  /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/config/
preloaded-classes     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.3/
haha-2.0.3.jar 
  /prebuilts/misc/common/android-support-test/espresso/
espresso_web_release_no_deps.jar 
  /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/kotlinc/lib/
kotlin-runtime.jar 
kotlin-stdlib.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.2-4/
kotlin-stdlib-1.1.2-4.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/
kotlin-stdlib-1.1.3-2.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.1/
kotlin-stdlib-1.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 

Completed in 1408 milliseconds

1 2 3 4 5 6