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

/external/guava/src/com/google/common/collect/
H A DRegularImmutableSortedSet.java45 private final int fromIndex; field in class:RegularImmutableSortedSet
56 this.fromIndex = 0;
61 Comparator<? super E> comparator, int fromIndex, int toIndex) {
64 this.fromIndex = fromIndex;
72 Iterators.forArray(elements, fromIndex, size());
80 return toIndex - fromIndex;
105 int i = fromIndex;
131 int lower = fromIndex;
151 Platform.unsafeArrayCopy(elements, fromIndex, arra
60 RegularImmutableSortedSet(Object[] elements, Comparator<? super E> comparator, int fromIndex, int toIndex) argument
[all...]
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 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.java376 private final transient int fromIndex; field in class:ImmutableSortedMap
380 Comparator<? super K> comparator, int fromIndex, int toIndex) {
386 this.fromIndex = fromIndex;
396 return toIndex - fromIndex;
413 int lower = fromIndex;
436 for (int i = fromIndex; i < toIndex; i++) {
473 return Iterators.forArray(map.entries, map.fromIndex, size());
518 for (int i = fromIndex; i < toIndex; i++) {
519 array[i - fromIndex]
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.java40 * @param fromIndex the start index in the class path.
45 int fromIndex,
51 for (int index = toIndex - 1; index >= fromIndex; index--)
44 createDataEntryWriter(ClassPath classPath, int fromIndex, int toIndex) argument
H A DInputReader.java191 int fromIndex,
195 for (int index = fromIndex; index < toIndex; index++)
189 readInput(String messagePrefix, ClassPath classPath, int fromIndex, int toIndex, DataEntryReader reader) argument
H A DConfigurationParser.java1058 int fromIndex = 0;
1061 fromIndex = word.indexOf(ConfigurationConstants.OPEN_SYSTEM_PROPERTY, fromIndex);
1062 if (fromIndex < 0)
1067 int toIndex = word.indexOf(ConfigurationConstants.CLOSE_SYSTEM_PROPERTY, fromIndex+1);
1075 String propertyName = word.substring(fromIndex+1, toIndex);
1083 word = word.substring(0, fromIndex) +
/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.js65 assertEquals(fromJSON.fromIndex, 0);
/external/v8/src/
H A Dmirror-debugger.js2062 content.fromIndex = 0;

Completed in 257 milliseconds