Searched defs:headMap (Results 1 - 13 of 13) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DForwardingSortedMap.java75 public SortedMap<K, V> headMap(K toKey) { method in class:ForwardingSortedMap
76 return delegate().headMap(toKey);
162 * terms of {@link #headMap(Object)} and {@link #tailMap(Object)}. In some
169 return tailMap(fromKey).headMap(toKey);
H A DSortedMaps.java349 SortedMap<K, V> headMap = sortedMap();
352 K key = headMap.lastKey();
356 headMap = sortedMap().headMap(key);
360 @Override public SortedMap<K, V> headMap(K toKey) { method in class:SortedMaps.FilteredSortedMap
361 return new FilteredSortedMap<K, V>(sortedMap().headMap(toKey), predicate);
H A DStandardRowSortedTable.java99 sortedBackingMap().headMap(toElement), factory).rowKeySet();
149 public SortedMap<R, Map<C, V>> headMap(R toKey) { method in class:StandardRowSortedTable.RowSortedMap
152 sortedBackingMap().headMap(toKey), factory).rowMap();
H A DTreeBasedTable.java214 @Override public SortedMap<C, V> headMap(C toKey) { method in class:TreeBasedTable.TreeRow
267 map = map.headMap(upperBound);
H A DImmutableSortedMap.java643 * <p>The {@link SortedMap#headMap} documentation states that a submap of a
650 public ImmutableSortedMap<K, V> headMap(K toKey) { method in class:ImmutableSortedMap
651 return headMap(toKey, false);
654 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive){ method in class:ImmutableSortedMap
687 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
H A DAbstractMultimap.java971 return new SortedKeySet(sortedMap().headMap(toElement));
1168 * Usually the same as map, but smaller for the headMap(), tailMap(), or
1324 public SortedMap<K, Collection<V>> headMap(K toKey) { method in class:AbstractMultimap.SortedAsMap
1325 return new SortedAsMap(sortedMap().headMap(toKey));
H A DMaps.java1265 @Override public SortedMap<K, V2> headMap(K toKey) { method in class:Maps.TransformedEntriesSortedMap
1266 return transformEntries(fromMap().headMap(toKey), transformer);
1726 SortedMap<K, V> headMap = sortedMap();
1729 K key = headMap.lastKey();
1733 headMap = sortedMap().headMap(key);
1737 @Override public SortedMap<K, V> headMap(K toKey) { method in class:Maps.FilteredEntrySortedMap
1738 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
H A DSynchronized.java1071 @Override public SortedMap<K, V> headMap(K toKey) { method in class:Synchronized.SynchronizedSortedMap
1073 return sortedMap(delegate().headMap(toKey), mutex);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DRefSortedMap.java188 public SortedMap<K, V> headMap(K key) { method in class:RefSortedMap.SubMap
278 public SortedMap<K, V> headMap(K key) { method in class:RefSortedMap
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedMap.java267 public ImmutableSortedMap<K, V> headMap(K toKey) { method in class:ImmutableSortedMap
269 return new ImmutableSortedMap<K, V>(sortedDelegate.headMap(toKey));
272 ImmutableSortedMap<K, V> headMap(K toKey, boolean inclusive) { method in class:ImmutableSortedMap
281 return headMap(toKey);
295 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
H A DMaps.java1236 @Override public SortedMap<K, V2> headMap(K toKey) { method in class:Maps.TransformedEntriesSortedMap
1237 return transformEntries(fromMap().headMap(toKey), transformer);
1697 SortedMap<K, V> headMap = sortedMap();
1700 K key = headMap.lastKey();
1704 headMap = sortedMap().headMap(key);
1708 @Override public SortedMap<K, V> headMap(K toKey) { method in class:Maps.FilteredEntrySortedMap
1709 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
H A DSynchronized.java1058 @Override public SortedMap<K, V> headMap(K toKey) { method in class:Synchronized.SynchronizedSortedMap
1060 return sortedMap(delegate().headMap(toKey), mutex);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java139 @Override public SortedMap<K, V> headMap(K toKey) { method in class:SafeTreeMap
140 return headMap(toKey, false);
143 @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { method in class:SafeTreeMap
145 delegate.headMap(checkValid(toKey), inclusive));

Completed in 67 milliseconds