HomeSort by relevance Sort by last modified time
    Searched refs:toKey (Results 1 - 25 of 75) sorted by null

1 2 3

  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 33 K toKey, boolean toInclusive);
40 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive);
54 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey);
61 ConcurrentNavigableMap<K,V> headMap(K toKey);
ConcurrentSkipListMap.java     [all...]
  /libcore/luni/src/main/java/java/util/
NavigableMap.java 264 * {@code fromKey} to {@code toKey}. If {@code fromKey} and
265 * {@code toKey} are equal, the returned map is empty unless
278 * @param toKey high endpoint of the keys in the returned map
282 * {@code fromKey} to {@code toKey}
283 * @throws ClassCastException if {@code fromKey} and {@code toKey}
287 * exception if {@code fromKey} or {@code toKey}
289 * @throws NullPointerException if {@code fromKey} or {@code toKey}
292 * {@code toKey}; or if this map itself has a restricted
293 * range, and {@code fromKey} or {@code toKey} lies
297 K toKey, boolean toInclusive)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
StandardRowSortedTable.java 118 public SortedMap<R, Map<C, V>> headMap(R toKey) {
119 checkNotNull(toKey);
121 sortedBackingMap().headMap(toKey), factory).rowMap();
125 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) {
127 checkNotNull(toKey);
129 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap();
ForwardingSortedMap.java 77 public SortedMap<K, V> headMap(K toKey) {
78 return delegate().headMap(toKey);
87 public SortedMap<K, V> subMap(K fromKey, K toKey) {
88 return delegate().subMap(fromKey, toKey);
191 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) {
192 checkArgument(unsafeCompare(fromKey, toKey) <= 0, "fromKey must be <= toKey");
193 return tailMap(fromKey).headMap(toKey);
EmptyImmutableSortedMap.java 97 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) {
98 checkNotNull(toKey);
TreeBasedTable.java 216 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) {
218 && rangeContains(checkNotNull(toKey)));
219 return new TreeRow(rowKey, fromKey, toKey);
222 @Override public SortedMap<C, V> headMap(C toKey) {
223 checkArgument(rangeContains(checkNotNull(toKey)));
224 return new TreeRow(rowKey, lowerBound, toKey);
RegularImmutableSortedMap.java 113 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) {
114 return getSubMap(0, keySet.headIndex(checkNotNull(toKey), inclusive));
ImmutableSortedMap.java 473 * whose keys are less than {@code toKey}.
476 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
477 * greater than an earlier {@code toKey}. However, this method doesn't throw
479 * toKey}.
482 public ImmutableSortedMap<K, V> headMap(K toKey) {
483 return headMap(toKey, false);
488 * whose keys are less than (or equal to, if {@code inclusive}) {@code toKey}.
491 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
492 * greater than an earlier {@code toKey}. However, this method doesn't throw
494 * toKey}
    [all...]
Maps.java 829 public SortedMap<K, V> subMap(K fromKey, K toKey) {
830 return asMap(backingSet().subSet(fromKey, toKey), function);
834 public SortedMap<K, V> headMap(K toKey) {
835 return asMap(backingSet().headSet(toKey), function);
    [all...]
AbstractMapBasedMultimap.java     [all...]
Synchronized.java 1073 @Override public SortedMap<K, V> headMap(K toKey) {
1075 return sortedMap(delegate().headMap(toKey), mutex);
1085 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
1087 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedMap.java 257 public ImmutableSortedMap<K, V> headMap(K toKey) {
258 checkNotNull(toKey);
259 return newView(sortedDelegate.headMap(toKey));
262 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) {
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) {
276 checkNotNull(toKey);
    [all...]
Maps.java 826 public SortedMap<K, V> subMap(K fromKey, K toKey) {
827 return asMap(backingSet().subSet(fromKey, toKey), function);
831 public SortedMap<K, V> headMap(K toKey) {
832 return asMap(backingSet().headSet(toKey), function);
    [all...]
AbstractMapBasedMultimap.java     [all...]
Synchronized.java 1060 @Override public SortedMap<K, V> headMap(K toKey) {
1062 return sortedMap(delegate().headMap(toKey), mutex);
1072 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
1074 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeMap.java 141 @Override public SortedMap<K, V> headMap(K toKey) {
142 return new SafeTreeMap<K, V>(delegate.headMap(checkValid(toKey)));
176 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
177 return new SafeTreeMap<K, V>(delegate.subMap(checkValid(fromKey), checkValid(toKey)));
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedMapTest.java 112 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
113 return standardSubMap(fromKey, toKey);
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 140 this.key = toKey(info, this.extras);
288 public static String toKey(SyncStorageEngine.EndPoint info, Bundle extras) {
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/devtools/tools/lib/
guava-17.0.jar 
  /prebuilts/misc/common/guava/
guava-15.0.jar 

Completed in 650 milliseconds

1 2 3