HomeSort by relevance Sort by last modified time
    Searched refs:SubList (Results 1 - 25 of 100) 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 );
  /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;
  /frameworks/base/
preloaded-classes     [all...]
compiled-classes-phone     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.3/
haha-2.0.3.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 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/
auto-value-1.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3-rc1/
auto-value-1.3-rc1.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.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 

Completed in 522 milliseconds

1 2 3 4