Searched refs:toKey (Results 1 - 25 of 40) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
H A DForwardingSortedMap.java76 public SortedMap<K, V> headMap(K toKey) { argument
77 return delegate().headMap(toKey);
86 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
87 return delegate().subMap(fromKey, toKey);
153 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { argument
154 checkArgument(unsafeCompare(fromKey, toKey) <= 0, "fromKey must be <= toKey");
155 return tailMap(fromKey).headMap(toKey);
H A DStandardRowSortedTable.java118 public SortedMap<R, Map<C, V>> headMap(R toKey) { argument
119 checkNotNull(toKey);
121 sortedBackingMap().headMap(toKey), factory).rowMap();
125 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) { argument
127 checkNotNull(toKey);
129 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap();
H A DForwardingNavigableMap.java362 protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { argument
363 return subMap(fromKey, true, toKey, false);
367 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
368 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive);
372 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { argument
373 return delegate().headMap(toKey, inclusive);
386 protected SortedMap<K, V> standardHeadMap(K toKey) { argument
387 return headMap(toKey, false);
H A DAbstractNavigableMap.java134 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
135 return subMap(fromKey, true, toKey, false);
139 public SortedMap<K, V> headMap(K toKey) { argument
140 return headMap(toKey, false);
H A DEmptyImmutableSortedMap.java97 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { argument
98 checkNotNull(toKey);
H A DTreeBasedTable.java216 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) { argument
218 && rangeContains(checkNotNull(toKey)));
219 return new TreeRow(rowKey, fromKey, toKey);
222 @Override public SortedMap<C, V> headMap(C toKey) { argument
223 checkArgument(rangeContains(checkNotNull(toKey)));
224 return new TreeRow(rowKey, lowerBound, toKey);
H A DRegularImmutableSortedMap.java113 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { argument
114 return getSubMap(0, keySet.headIndex(checkNotNull(toKey), inclusive));
H A DImmutableSortedMap.java474 * whose keys are less than {@code toKey}.
477 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
478 * greater than an earlier {@code toKey}. However, this method doesn't throw
480 * toKey}.
483 public ImmutableSortedMap<K, V> headMap(K toKey) { argument
484 return headMap(toKey, false);
489 * whose keys are less than (or equal to, if {@code inclusive}) {@code toKey}.
492 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
493 * greater than an earlier {@code toKey}. However, this method doesn't throw
495 * toKey}
500 headMap(K toKey, boolean inclusive) argument
516 subMap(K fromKey, K toKey) argument
536 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DTreeRangeSet.java272 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
275 toKey, BoundType.forBoolean(toInclusive)));
279 public NavigableMap<Cut<C>, Range<C>> headMap(Cut<C> toKey, boolean inclusive) { argument
280 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive)));
433 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
436 toKey, BoundType.forBoolean(toInclusive)));
440 public NavigableMap<Cut<C>, Range<C>> headMap(Cut<C> toKey, boolean inclusive) { argument
441 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive)));
656 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
658 fromKey, BoundType.forBoolean(fromInclusive), toKey, BoundTyp
271 subMap( Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) argument
432 subMap( Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) argument
655 subMap( Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) argument
662 headMap(Cut<C> toKey, boolean inclusive) argument
[all...]
H A DMaps.java864 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
865 return asMap(backingSet().subSet(fromKey, toKey), function);
869 public SortedMap<K, V> headMap(K toKey) { argument
870 return asMap(backingSet().headSet(toKey), function);
907 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
908 return asMap(set.subSet(fromKey, fromInclusive, toKey, toInclusive), function);
912 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { argument
913 return asMap(set.headSet(toKey, inclusive), function);
1956 @Override public SortedMap<K, V2> headMap(K toKey) { argument
1957 return transformEntries(fromMap().headMap(toKey), transforme
906 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1964 subMap(K fromKey, K toKey) argument
2011 headMap(K toKey) argument
2015 headMap(K toKey, boolean inclusive) argument
2052 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
2059 subMap(K fromKey, K toKey) argument
2855 headMap(K toKey) argument
2859 subMap(K fromKey, K toKey) argument
3001 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
3008 headMap(K toKey, boolean inclusive) argument
3210 subMap(K fromKey, K toKey) argument
3215 headMap(K toKey) argument
3227 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
3236 headMap(K toKey, boolean inclusive) argument
3945 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
3950 headMap(K toKey, boolean inclusive) argument
3960 subMap(K fromKey, K toKey) argument
3965 headMap(K toKey) argument
[all...]
H A DAbstractMapBasedMultimap.java1389 public SortedMap<K, Collection<V>> headMap(K toKey) { argument
1390 return new SortedAsMap(sortedMap().headMap(toKey));
1394 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { argument
1395 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
1533 public NavigableMap<K, Collection<V>> subMap(K fromKey, K toKey) { argument
1534 return subMap(fromKey, true, toKey, false);
1539 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
1540 return new NavigableAsMap(sortedMap().subMap(fromKey, fromInclusive, toKey, toInclusive));
1544 public NavigableMap<K, Collection<V>> headMap(K toKey) { argument
1545 return headMap(toKey, fals
1538 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1549 headMap(K toKey, boolean inclusive) argument
[all...]
H A DSynchronized.java1076 @Override public SortedMap<K, V> headMap(K toKey) { argument
1078 return sortedMap(delegate().headMap(toKey), mutex);
1088 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1090 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1417 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { argument
1420 delegate().headMap(toKey, inclusive), mutex);
1483 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
1486 delegate().subMap(fromKey, fromInclusive, toKey, toInclusive),
1498 @Override public SortedMap<K, V> headMap(K toKey) { argument
1499 return headMap(toKey, fals
1482 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
1502 subMap(K fromKey, K toKey) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedMap.java257 public ImmutableSortedMap<K, V> headMap(K toKey) { argument
258 checkNotNull(toKey);
259 return newView(sortedDelegate.headMap(toKey));
262 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { argument
263 checkNotNull(toKey);
265 K tmp = higher(toKey);
269 toKey = tmp;
271 return headMap(toKey);
274 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { argument
276 checkNotNull(toKey);
281 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DMaps.java826 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
827 return asMap(backingSet().subSet(fromKey, toKey), function);
831 public SortedMap<K, V> headMap(K toKey) { argument
832 return asMap(backingSet().headSet(toKey), function);
1647 @Override public SortedMap<K, V2> headMap(K toKey) { argument
1648 return transformEntries(fromMap().headMap(toKey), transformer);
1655 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { argument
1657 fromMap().subMap(fromKey, toKey), transformer);
2322 @Override public SortedMap<K, V> headMap(K toKey) { argument
2323 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicat
2326 subMap(K fromKey, K toKey) argument
[all...]
H A DAbstractMapBasedMultimap.java1227 public SortedMap<K, Collection<V>> headMap(K toKey) { argument
1228 return new SortedAsMap(sortedMap().headMap(toKey));
1232 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { argument
1233 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
H A DSynchronized.java1060 @Override public SortedMap<K, V> headMap(K toKey) { argument
1062 return sortedMap(delegate().headMap(toKey), mutex);
1072 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1074 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java176 @Override public SortedMap<K, V> headMap(K toKey) { argument
177 return headMap(toKey, false);
180 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { argument
182 delegate.headMap(checkValid(toKey), inclusive));
249 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
251 checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive));
254 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
255 return subMap(fromKey, true, toKey, false);
248 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedNavigableMapTest.java142 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { argument
144 return delegate().headMap(toKey, inclusive);
147 @Override public SortedMap<K, V> headMap(K toKey) { argument
148 return headMap(toKey, false);
192 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
194 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive);
197 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
198 return delegate().subMap(fromKey, true, toKey, false);
191 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
H A DForwardingNavigableMapTest.java116 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
117 return standardSubMap(fromKey, toKey);
201 public SortedMap<K, V> headMap(K toKey) { argument
202 return standardHeadMap(toKey);
H A DForwardingSortedMapTest.java109 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
110 return standardSubMap(fromKey, toKey);
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...

Completed in 454 milliseconds

12