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

/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/src/com/google/common/collect/
H A DForwardingSortedMap.java85 public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
86 return delegate().subMap(fromKey, toKey);
90 public SortedMap<K, V> tailMap(K fromKey) { argument
91 return delegate().tailMap(fromKey);
168 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { argument
169 return tailMap(fromKey).headMap(toKey);
H A DSortedMaps.java364 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
366 sortedMap().subMap(fromKey, toKey), predicate);
369 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
371 sortedMap().tailMap(fromKey), predicate);
H A DStandardRowSortedTable.java156 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) { argument
157 checkNotNull(fromKey);
160 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap();
164 public SortedMap<R, Map<C, V>> tailMap(R fromKey) { argument
165 checkNotNull(fromKey);
167 sortedBackingMap().tailMap(fromKey), factory).rowMap();
H A DTreeBasedTable.java208 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) { argument
209 checkArgument(rangeContains(checkNotNull(fromKey))
211 return new TreeRow(rowKey, fromKey, toKey);
219 @Override public SortedMap<C, V> tailMap(C fromKey) { argument
220 checkArgument(rangeContains(checkNotNull(fromKey)));
221 return new TreeRow(rowKey, fromKey, upperBound);
H A DImmutableSortedMap.java666 * whose keys ranges from {@code fromKey}, inclusive, to {@code toKey},
671 * fromKey} less than an earlier {@code fromKey}. However, this method doesn't
673 * fromKey}. Similarly, this method keeps the original {@code toKey}, instead
678 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { argument
679 return subMap(fromKey, true, toKey, false);
682 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, argument
684 checkNotNull(fromKey);
686 checkArgument(comparator.compare(fromKey, toKey) <= 0);
687 return tailMap(fromKey, fromInclusiv
701 tailMap(K fromKey) argument
705 tailMap(K fromKey, boolean inclusive) argument
[all...]
H A DAbstractMultimap.java1329 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { argument
1330 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
1334 public SortedMap<K, Collection<V>> tailMap(K fromKey) { argument
1335 return new SortedAsMap(sortedMap().tailMap(fromKey));
H A DMaps.java1273 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { argument
1275 fromMap().subMap(fromKey, toKey), transformer);
1278 @Override public SortedMap<K, V2> tailMap(K fromKey) { argument
1279 return transformEntries(fromMap().tailMap(fromKey), transformer);
1741 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1743 sortedMap().subMap(fromKey, toKey), predicate);
1746 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
1748 sortedMap().tailMap(fromKey), predicate);
H A DSynchronized.java1083 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1085 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1089 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
1091 return sortedMap(delegate().tailMap(fromKey), 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.java284 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { argument
285 checkNotNull(fromKey);
287 checkArgument(comparator.compare(fromKey, toKey) <= 0);
288 return new ImmutableSortedMap<K, V>(sortedDelegate.subMap(fromKey, toKey));
291 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive){ argument
292 checkNotNull(fromKey);
294 checkArgument(comparator.compare(fromKey, toKey) <= 0);
295 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
298 public ImmutableSortedMap<K, V> tailMap(K fromKey) { argument
299 checkNotNull(fromKey);
303 tailMap(K fromKey, boolean inclusive) argument
[all...]
H A DMaps.java1244 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { argument
1246 fromMap().subMap(fromKey, toKey), transformer);
1249 @Override public SortedMap<K, V2> tailMap(K fromKey) { argument
1250 return transformEntries(fromMap().tailMap(fromKey), transformer);
1712 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1714 sortedMap().subMap(fromKey, toKey), predicate);
1717 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
1719 sortedMap().tailMap(fromKey), predicate);
H A DSynchronized.java1070 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { argument
1072 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1076 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
1078 return sortedMap(delegate().tailMap(fromKey), mutex);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java212 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);
221 @Override public SortedMap<K, V> tailMap(K fromKey) { argument
222 return tailMap(fromKey, true);
225 @Override public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { argument
227 delegate.tailMap(checkValid(fromKey), inclusive));
211 subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument

Completed in 182 milliseconds