Searched refs:fromKey (Results 1 - 21 of 21) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DStandardRowSortedTable.java125 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) { argument
126 checkNotNull(fromKey);
129 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap();
133 public SortedMap<R, Map<C, V>> tailMap(R fromKey) { argument
134 checkNotNull(fromKey);
136 sortedBackingMap().tailMap(fromKey), factory).rowMap();
H A DForwardingSortedMap.java87 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
88 return delegate().subMap(fromKey, toKey);
92 public SortedMap<K, V> tailMap(K fromKey) { argument
93 return delegate().tailMap(fromKey);
191 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { argument
192 checkArgument(unsafeCompare(fromKey, toKey) <= 0, "fromKey must be <= toKey");
193 return tailMap(fromKey).headMap(toKey);
H A DEmptyImmutableSortedMap.java103 public ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive) { argument
104 checkNotNull(fromKey);
H A DTreeBasedTable.java216 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) { argument
217 checkArgument(rangeContains(checkNotNull(fromKey))
219 return new TreeRow(rowKey, fromKey, toKey);
227 @Override public SortedMap<C, V> tailMap(C fromKey) { argument
228 checkArgument(rangeContains(checkNotNull(fromKey)));
229 return new TreeRow(rowKey, fromKey, upperBound);
H A DRegularImmutableSortedMap.java118 public ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive) { argument
119 return getSubMap(keySet.tailIndex(checkNotNull(fromKey), inclusive), size());
H A DImmutableSortedMap.java502 * whose keys ranges from {@code fromKey}, inclusive, to {@code toKey},
507 * fromKey} less than an earlier {@code fromKey}. However, this method doesn't
509 * fromKey}. Similarly, this method keeps the original {@code toKey}, instead
514 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { argument
515 return subMap(fromKey, true, toKey, false);
520 * whose keys ranges from {@code fromKey} to {@code toKey}, inclusive or
525 * fromKey} less than an earlier {@code fromKey}. However, this method doesn't
527 * fromKey}
533 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
553 tailMap(K fromKey) argument
570 tailMap(K fromKey, boolean inclusive) argument
[all...]
H A DMaps.java829 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
830 return asMap(backingSet().subSet(fromKey, toKey), function);
839 public SortedMap<K, V> tailMap(K fromKey) { argument
840 return asMap(backingSet().tailSet(fromKey), function);
1684 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { argument
1686 fromMap().subMap(fromKey, toKey), transformer);
1689 @Override public SortedMap<K, V2> tailMap(K fromKey) { argument
1690 return transformEntries(fromMap().tailMap(fromKey), transformer);
2355 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
2357 sortedMap().subMap(fromKey, toKe
2360 tailMap(K fromKey) argument
[all...]
H A DAbstractMapBasedMultimap.java1233 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { argument
1234 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
1238 public SortedMap<K, Collection<V>> tailMap(K fromKey) { argument
1239 return new SortedAsMap(sortedMap().tailMap(fromKey));
H A DSynchronized.java1085 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1087 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1091 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
1093 return sortedMap(delegate().tailMap(fromKey), mutex);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedMap.java274 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { argument
275 checkNotNull(fromKey);
277 checkArgument(comparator.compare(fromKey, toKey) <= 0);
278 return newView(sortedDelegate.subMap(fromKey, toKey));
281 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
282 checkNotNull(fromKey);
284 checkArgument(comparator.compare(fromKey, toKey) <= 0);
285 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
288 public ImmutableSortedMap<K, V> tailMap(K fromKey) { argument
289 checkNotNull(fromKey);
293 tailMap(K fromKey, boolean inclusive) argument
[all...]
H A DMaps.java826 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
827 return asMap(backingSet().subSet(fromKey, toKey), function);
836 public SortedMap<K, V> tailMap(K fromKey) { argument
837 return asMap(backingSet().tailSet(fromKey), function);
1655 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { argument
1657 fromMap().subMap(fromKey, toKey), transformer);
1660 @Override public SortedMap<K, V2> tailMap(K fromKey) { argument
1661 return transformEntries(fromMap().tailMap(fromKey), transformer);
2326 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
2328 sortedMap().subMap(fromKey, toKe
2331 tailMap(K fromKey) argument
[all...]
H A DAbstractMapBasedMultimap.java1232 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { argument
1233 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
1237 public SortedMap<K, Collection<V>> tailMap(K fromKey) { argument
1238 return new SortedAsMap(sortedMap().tailMap(fromKey));
H A DSynchronized.java1072 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1074 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1078 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
1080 return sortedMap(delegate().tailMap(fromKey), mutex);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
H A DAuthorityKeyIdentifierStructure.java108 private static ASN1Sequence fromKey( method in class:AuthorityKeyIdentifierStructure
150 super(fromKey(pubKey));
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java176 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
177 return new SafeTreeMap<K, V>(delegate.subMap(checkValid(fromKey), checkValid(toKey)));
180 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
181 return new SafeTreeMap<K, V>(delegate.tailMap(checkValid(fromKey)));
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedMapTest.java112 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
113 return standardSubMap(fromKey, toKey);
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 649 milliseconds