Home
last modified time | relevance | path

Searched defs:toKey (Results 1 – 8 of 8) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DForwardingSortedMap.java77 public SortedMap<K, V> headMap(K toKey) { in headMap()
87 public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap()
191 @Beta protected SortedMap<K, V> standardSubMap(K fromKey, K toKey) { in standardSubMap()
DStandardRowSortedTable.java118 public SortedMap<R, Map<C, V>> headMap(R toKey) { in headMap()
125 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) { in subMap()
DImmutableSortedMap.java482 public ImmutableSortedMap<K, V> headMap(K toKey) { in headMap()
498 public abstract ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive); in headMap()
514 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { in subMap()
533 public ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, in subMap()
538 "expected fromKey <= toKey but %s > %s", fromKey, toKey); in subMap() local
DTreeBasedTable.java216 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) { in subMap()
222 @Override public SortedMap<C, V> headMap(C toKey) { in headMap()
DEmptyImmutableSortedMap.java97 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { in headMap()
DRegularImmutableSortedMap.java113 public ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { in headMap()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSortedMap.java257 public ImmutableSortedMap<K, V> headMap(K toKey) { in headMap()
262 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { in headMap()
274 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { in subMap()
281 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap()
/external/guava/guava-tests/test/com/google/common/collect/
DForwardingSortedMapTest.java112 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { in subMap()