Searched defs:toKey (Results 1 - 14 of 14) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DForwardingSortedMap.java75 public SortedMap<K, V> headMap(K toKey) { argument
76 return delegate().headMap(toKey);
85 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
86 return delegate().subMap(fromKey, toKey);
168 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { argument
169 return tailMap(fromKey).headMap(toKey);
H A DSortedMaps.java360 @Override public SortedMap<K, V> headMap(K toKey) { argument
361 return new FilteredSortedMap<K, V>(sortedMap().headMap(toKey), predicate);
364 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
366 sortedMap().subMap(fromKey, toKey), predicate);
H A DStandardRowSortedTable.java149 public SortedMap<R, Map<C, V>> headMap(R toKey) { argument
150 checkNotNull(toKey);
152 sortedBackingMap().headMap(toKey), factory).rowMap();
156 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) { argument
158 checkNotNull(toKey);
160 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap();
H A DTreeBasedTable.java208 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) { argument
210 && rangeContains(checkNotNull(toKey)));
211 return new TreeRow(rowKey, fromKey, toKey);
214 @Override public SortedMap<C, V> headMap(C toKey) { argument
215 checkArgument(rangeContains(checkNotNull(toKey)));
216 return new TreeRow(rowKey, lowerBound, toKey);
H A DImmutableSortedMap.java641 * whose keys are less than {@code toKey}.
644 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
645 * greater than an earlier {@code toKey}. However, this method doesn't throw
647 * toKey}.
650 public ImmutableSortedMap<K, V> headMap(K toKey) { argument
651 return headMap(toKey, false);
654 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive){ argument
657 index = index(toKey, ANY_PRESENT, NEXT_LOWER) + 1;
659 index = index(toKey, ANY_PRESENT, NEXT_HIGHER);
666 * whose keys ranges from {@code fromKey}, inclusive, to {@code toKey},
678 subMap(K fromKey, K toKey) argument
682 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DAbstractMultimap.java1324 public SortedMap<K, Collection<V>> headMap(K toKey) { argument
1325 return new SortedAsMap(sortedMap().headMap(toKey));
1329 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { argument
1330 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
H A DMaps.java1265 @Override public SortedMap<K, V2> headMap(K toKey) { argument
1266 return transformEntries(fromMap().headMap(toKey), transformer);
1273 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { argument
1275 fromMap().subMap(fromKey, toKey), transformer);
1737 @Override public SortedMap<K, V> headMap(K toKey) { argument
1738 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
1741 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1743 sortedMap().subMap(fromKey, toKey), predicate);
H A DSynchronized.java1071 @Override public SortedMap<K, V> headMap(K toKey) { argument
1073 return sortedMap(delegate().headMap(toKey), mutex);
1083 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1085 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedMapTest.java109 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
110 return standardSubMap(fromKey, toKey);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedMap.java267 public ImmutableSortedMap<K, V> headMap(K toKey) { argument
268 checkNotNull(toKey);
269 return new ImmutableSortedMap<K, V>(sortedDelegate.headMap(toKey));
272 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { argument
273 checkNotNull(toKey);
275 K tmp = higher(toKey);
279 toKey = tmp;
281 return headMap(toKey);
284 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { argument
286 checkNotNull(toKey);
291 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DMaps.java1236 @Override public SortedMap<K, V2> headMap(K toKey) { argument
1237 return transformEntries(fromMap().headMap(toKey), transformer);
1244 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { argument
1246 fromMap().subMap(fromKey, toKey), transformer);
1708 @Override public SortedMap<K, V> headMap(K toKey) { argument
1709 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
1712 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1714 sortedMap().subMap(fromKey, toKey), predicate);
H A DSynchronized.java1058 @Override public SortedMap<K, V> headMap(K toKey) { argument
1060 return sortedMap(delegate().headMap(toKey), mutex);
1070 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1072 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java139 @Override public SortedMap<K, V> headMap(K toKey) { argument
140 return headMap(toKey, false);
143 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { argument
145 delegate.headMap(checkValid(toKey), inclusive));
212 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
214 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive));
217 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
218 return subMap(fromKey, true, toKey, false);
211 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 119 milliseconds