Searched refs:newFromIndex (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableSortedMultiset.java188 private ImmutableSortedMultiset<E> createSubMultiset(int newFromIndex, int newToIndex) { argument
189 if (newFromIndex == 0 && newToIndex == entries.size()) {
191 } else if (newFromIndex >= newToIndex) {
195 comparator(), entries.subList(newFromIndex, newToIndex));
H A DRegularImmutableSortedSet.java240 private ImmutableSortedSet<E> createSubset(int newFromIndex, int newToIndex) { argument
241 if (newFromIndex == 0 && newToIndex == size()) {
243 } else if (newFromIndex < newToIndex) {
245 elements.subList(newFromIndex, newToIndex), comparator);
H A DImmutableSortedMap.java731 int newFromIndex, int newToIndex) {
732 if (newFromIndex < newToIndex) {
734 entries.subList(newFromIndex, newToIndex), comparator);
730 createSubmap( int newFromIndex, int newToIndex) argument

Completed in 70 milliseconds