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

1 2 3

  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 32 K toKey, boolean toInclusive);
39 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive);
53 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey);
60 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...]
Collections.java     [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedMap.java 75 public SortedMap<K, V> headMap(K toKey) {
76 return delegate().headMap(toKey);
85 public SortedMap<K, V> subMap(K fromKey, K toKey) {
86 return delegate().subMap(fromKey, toKey);
168 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) {
169 return tailMap(fromKey).headMap(toKey);
StandardRowSortedTable.java 149 public SortedMap<R, Map<C, V>> headMap(R toKey) {
150 checkNotNull(toKey);
152 sortedBackingMap().headMap(toKey), factory).rowMap();
156 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) {
158 checkNotNull(toKey);
160 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap();
TreeBasedTable.java 208 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) {
210 && rangeContains(checkNotNull(toKey)));
211 return new TreeRow(rowKey, fromKey, toKey);
214 @Override public SortedMap<C, V> headMap(C toKey) {
215 checkArgument(rangeContains(checkNotNull(toKey)));
216 return new TreeRow(rowKey, lowerBound, toKey);
ImmutableSortedMap.java 641 * 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) {
651 return headMap(toKey, false);
654 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive){
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},
    [all...]
SortedMaps.java 360 @Override public SortedMap<K, V> headMap(K toKey) {
361 return new FilteredSortedMap<K, V>(sortedMap().headMap(toKey), predicate);
364 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
366 sortedMap().subMap(fromKey, toKey), predicate);
Maps.java     [all...]
AbstractMultimap.java     [all...]
Synchronized.java 1071 @Override public SortedMap<K, V> headMap(K toKey) {
1073 return sortedMap(delegate().headMap(toKey), mutex);
1083 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
1085 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedMap.java 267 public ImmutableSortedMap<K, V> headMap(K toKey) {
268 checkNotNull(toKey);
269 return new ImmutableSortedMap<K, V>(sortedDelegate.headMap(toKey));
272 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) {
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) {
286 checkNotNull(toKey);
    [all...]
Maps.java     [all...]
Synchronized.java 1058 @Override public SortedMap<K, V> headMap(K toKey) {
1060 return sortedMap(delegate().headMap(toKey), mutex);
1070 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
1072 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeMap.java 139 @Override public SortedMap<K, V> headMap(K toKey) {
140 return headMap(toKey, false);
143 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
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) {
218 return subMap(fromKey, true, toKey, false);
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedMapTest.java 109 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
110 return standardSubMap(fromKey, toKey);
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 137 this.key = toKey(info, this.extras);
285 public static String toKey(SyncStorageEngine.EndPoint info, Bundle extras) {
  /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 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /prebuilts/misc/common/android-support-test/
espresso-core.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/15.0/
guava-15.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/17.0/
guava-17.0.jar 

Completed in 4606 milliseconds

1 2 3