Searched refs:toIndex (Results 1 - 24 of 24) sorted by relevance

/external/guava/src/com/google/common/collect/
H A DImmutableSortedAsList.java54 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) { argument
55 Preconditions.checkPositionIndexes(fromIndex, toIndex, size());
56 return (fromIndex == toIndex)
60 offset() + fromIndex, offset() + toIndex).asList();
H A DRegularImmutableSortedSet.java50 private final int toIndex; field in class:RegularImmutableSortedSet
57 this.toIndex = elements.length;
61 Comparator<? super E> comparator, int fromIndex, int toIndex) {
65 this.toIndex = toIndex;
80 return toIndex - fromIndex;
110 if (i >= toIndex) {
132 int upper = toIndex - 1;
183 for (int i = fromIndex; i < toIndex; i++) {
204 for (int i = fromIndex; i < toIndex;
60 RegularImmutableSortedSet(Object[] elements, Comparator<? super E> comparator, int fromIndex, int toIndex) argument
[all...]
H A DSingletonImmutableList.java74 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) { argument
75 Preconditions.checkPositionIndexes(fromIndex, toIndex, 1);
76 return (fromIndex == toIndex) ? ImmutableList.<E>of() : this;
H A DForwardingList.java84 public List<E> subList(int fromIndex, int toIndex) { argument
85 return Platform.subList(delegate(), fromIndex, toIndex);
H A DPlatform.java42 static <T> List<T> subList(List<T> list, int fromIndex, int toIndex) { argument
43 return list.subList(fromIndex, toIndex);
H A DEmptyImmutableList.java85 @Override public ImmutableList<Object> subList(int fromIndex, int toIndex) { argument
86 checkPositionIndexes(fromIndex, toIndex, 0);
H A DImmutableSortedMap.java377 private final transient int toIndex; field in class:ImmutableSortedMap
380 Comparator<? super K> comparator, int fromIndex, int toIndex) {
387 this.toIndex = toIndex;
396 return toIndex - fromIndex;
414 int upper = toIndex - 1;
436 for (int i = fromIndex; i < toIndex; i++) {
518 for (int i = fromIndex; i < toIndex; i++) {
551 return (index < map.toIndex)
599 return entries[toIndex
379 ImmutableSortedMap(Entry<?, ?>[] entries, Comparator<? super K> comparator, int fromIndex, int toIndex) argument
[all...]
H A DRegularImmutableList.java113 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) { argument
114 Preconditions.checkPositionIndexes(fromIndex, toIndex, size);
115 return (fromIndex == toIndex)
118 array, offset + fromIndex, toIndex - fromIndex);
H A DImmutableList.java297 * fromIndex}, inclusive, and {@code toIndex}, exclusive. (If {@code
298 * fromIndex} and {@code toIndex} are equal, the empty immutable list is
301 public abstract ImmutableList<E> subList(int fromIndex, int toIndex); argument
H A DSynchronized.java442 public List<E> subList(int fromIndex, int toIndex) { argument
444 return list(Platform.subList(delegate(), fromIndex, toIndex), mutex);
H A DAbstractMultimap.java761 public List<V> subList(int fromIndex, int toIndex) { argument
764 Platform.subList(getListDelegate(), fromIndex, toIndex),
/external/proguard/src/proguard/
H A DDataEntryWriterFactory.java41 * @param toIndex the end index in the class path.
46 int toIndex)
51 for (int index = toIndex - 1; index >= fromIndex; index--)
44 createDataEntryWriter(ClassPath classPath, int fromIndex, int toIndex) argument
H A DInputReader.java192 int toIndex,
195 for (int index = fromIndex; index < toIndex; index++)
189 readInput(String messagePrefix, ClassPath classPath, int fromIndex, int toIndex, DataEntryReader reader) argument
H A DConfigurationParser.java1067 int toIndex = word.indexOf(ConfigurationConstants.CLOSE_SYSTEM_PROPERTY, fromIndex+1);
1068 if (toIndex < 0)
1075 String propertyName = word.substring(fromIndex+1, toIndex);
1085 word.substring(toIndex+1);
/external/guava/src/com/google/common/primitives/
H A DBytes.java324 /*@Override*/ public List<Byte> subList(int fromIndex, int toIndex) { argument
326 checkPositionIndexes(fromIndex, toIndex, size);
327 if (fromIndex == toIndex) {
330 return new ByteArrayAsList(array, start + fromIndex, start + toIndex);
H A DBooleans.java409 /*@Override*/ public List<Boolean> subList(int fromIndex, int toIndex) { argument
411 checkPositionIndexes(fromIndex, toIndex, size);
412 if (fromIndex == toIndex) {
415 return new BooleanArrayAsList(array, start + fromIndex, start + toIndex);
H A DChars.java510 /*@Override*/ public List<Character> subList(int fromIndex, int toIndex) { argument
512 checkPositionIndexes(fromIndex, toIndex, size);
513 if (fromIndex == toIndex) {
516 return new CharArrayAsList(array, start + fromIndex, start + toIndex);
H A DDoubles.java446 /*@Override*/ public List<Double> subList(int fromIndex, int toIndex) { argument
448 checkPositionIndexes(fromIndex, toIndex, size);
449 if (fromIndex == toIndex) {
452 return new DoubleArrayAsList(array, start + fromIndex, start + toIndex);
H A DFloats.java443 /*@Override*/ public List<Float> subList(int fromIndex, int toIndex) { argument
445 checkPositionIndexes(fromIndex, toIndex, size);
446 if (fromIndex == toIndex) {
449 return new FloatArrayAsList(array, start + fromIndex, start + toIndex);
H A DInts.java517 /*@Override*/ public List<Integer> subList(int fromIndex, int toIndex) { argument
519 checkPositionIndexes(fromIndex, toIndex, size);
520 if (fromIndex == toIndex) {
523 return new IntArrayAsList(array, start + fromIndex, start + toIndex);
H A DLongs.java495 /*@Override*/ public List<Long> subList(int fromIndex, int toIndex) { argument
497 checkPositionIndexes(fromIndex, toIndex, size);
498 if (fromIndex == toIndex) {
501 return new LongArrayAsList(array, start + fromIndex, start + toIndex);
H A DShorts.java509 /*@Override*/ public List<Short> subList(int fromIndex, int toIndex) { argument
511 checkPositionIndexes(fromIndex, toIndex, size);
512 if (fromIndex == toIndex) {
515 return new ShortArrayAsList(array, start + fromIndex, start + toIndex);
/external/v8/test/mjsunit/
H A Dmirror-string.js66 assertEquals(fromJSON.toIndex, kMaxProtocolStringLength);
/external/v8/src/
H A Dmirror-debugger.js2063 content.toIndex = this.maxStringLength_();

Completed in 73 milliseconds