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

  /external/guava/src/com/google/common/collect/
ForwardingSortedMap.java 48 public SortedMap<K, V> headMap(K toKey) {
49 return delegate().headMap(toKey);
56 public SortedMap<K, V> subMap(K fromKey, K toKey) {
57 return delegate().subMap(fromKey, toKey);
ImmutableSortedMap.java 604 * whose keys are less than {@code toKey}.
607 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
608 * greater than an earlier {@code toKey}. However, this method doesn't throw
610 * toKey}.
612 public ImmutableSortedMap<K, V> headMap(K toKey) {
613 int newToIndex = findSubmapIndex(checkNotNull(toKey));
619 * whose keys ranges from {@code fromKey}, inclusive, to {@code toKey},
626 * fromKey}. Similarly, this method keeps the original {@code toKey}, instead
627 * of throwing an exception, if passed a {@code toKey} greater than an earlier
628 * {@code toKey}
    [all...]
AbstractMultimap.java     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 37 K toKey, boolean toInclusive);
44 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive);
59 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey);
66 ConcurrentNavigableMap<K,V> headMap(K toKey);
ConcurrentSkipListMap.java     [all...]
  /frameworks/base/core/java/android/content/
SyncOperation.java 59 this.key = toKey();
75 this.key = toKey();
90 private String toKey() {
  /libcore/luni/src/main/java/java/util/
Collections.java     [all...]
TreeMap.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 1255 milliseconds