Searched defs:tailMap (Results 1 - 18 of 18) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableSortedMap.java103 public ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:EmptyImmutableSortedMap
H A DForwardingSortedMap.java92 public SortedMap<K, V> tailMap(K fromKey) { method in class:ForwardingSortedMap
93 return delegate().tailMap(fromKey);
124 * firstKey()} method of {@link #tailMap}. If you override {@link #tailMap},
135 Object ceilingKey = self.tailMap(key).firstKey();
148 * iterator()} of the {@code entrySet()} of {@link #tailMap}. If you override
149 * {@link #tailMap}, you may wish to override {@link #remove} to forward
166 self.tailMap(key).entrySet().iterator();
185 * terms of {@link #headMap(Object)} and {@link #tailMap(Object)}. In some
193 return tailMap(fromKe
[all...]
H A DRegularImmutableSortedMap.java118 public ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:RegularImmutableSortedMap
H A DStandardRowSortedTable.java133 public SortedMap<R, Map<C, V>> tailMap(R fromKey) { method in class:StandardRowSortedTable.RowSortedMap
136 sortedBackingMap().tailMap(fromKey), factory).rowMap();
H A DTreeBasedTable.java227 @Override public SortedMap<C, V> tailMap(C fromKey) { method in class:TreeBasedTable.TreeRow
272 map = map.tailMap(lowerBound);
H A DImmutableSortedMap.java539 return headMap(toKey, toInclusive).tailMap(fromKey, fromInclusive);
546 * <p>The {@link SortedMap#tailMap} documentation states that a submap of a
553 public ImmutableSortedMap<K, V> tailMap(K fromKey) { method in class:ImmutableSortedMap
554 return tailMap(fromKey, true);
562 * <p>The {@link SortedMap#tailMap} documentation states that a submap of a
570 public abstract ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive); method in class:ImmutableSortedMap
589 return tailMap(key, true).firstEntry();
597 return tailMap(key, false).firstEntry();
H A DAbstractMapBasedMultimap.java941 return new SortedKeySet(sortedMap().tailMap(fromElement));
1071 * Usually the same as map, but smaller for the headMap(), tailMap(), or
1238 public SortedMap<K, Collection<V>> tailMap(K fromKey) { method in class:AbstractMapBasedMultimap.SortedAsMap
1239 return new SortedAsMap(sortedMap().tailMap(fromKey));
H A DSynchronized.java1091 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:Synchronized.SynchronizedSortedMap
1093 return sortedMap(delegate().tailMap(fromKey), mutex);
H A DMaps.java839 public SortedMap<K, V> tailMap(K fromKey) { method in class:Maps.SortedAsMapView
1689 @Override public SortedMap<K, V2> tailMap(K fromKey) { method in class:Maps.TransformedEntriesSortedMap
1690 return transformEntries(fromMap().tailMap(fromKey), transformer);
2316 return (SortedSet<K>) tailMap(fromElement).keySet();
2360 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:Maps.FilteredEntrySortedMap
2362 sortedMap().tailMap(fromKey), predicate);
2688 return new SortedKeySet<K, V>(map().tailMap(fromElement));
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java180 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:SafeTreeMap
181 return new SafeTreeMap<K, V>(delegate.tailMap(checkValid(fromKey)));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedMap.java163 = map.tailMap(key).entrySet().iterator().next();
285 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
288 public ImmutableSortedMap<K, V> tailMap(K fromKey) { method in class:ImmutableSortedMap
290 return newView(sortedDelegate.tailMap(fromKey));
293 public ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:ImmutableSortedMap
301 return tailMap(fromKey);
H A DAbstractMapBasedMultimap.java940 return new SortedKeySet(sortedMap().tailMap(fromElement));
1070 * Usually the same as map, but smaller for the headMap(), tailMap(), or
1237 public SortedMap<K, Collection<V>> tailMap(K fromKey) { method in class:AbstractMapBasedMultimap.SortedAsMap
1238 return new SortedAsMap(sortedMap().tailMap(fromKey));
H A DSynchronized.java1078 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:Synchronized.SynchronizedSortedMap
1080 return sortedMap(delegate().tailMap(fromKey), mutex);
H A DMaps.java836 public SortedMap<K, V> tailMap(K fromKey) { method in class:Maps.SortedAsMapView
1660 @Override public SortedMap<K, V2> tailMap(K fromKey) { method in class:Maps.TransformedEntriesSortedMap
1661 return transformEntries(fromMap().tailMap(fromKey), transformer);
2287 return (SortedSet<K>) tailMap(fromElement).keySet();
2331 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:Maps.FilteredEntrySortedMap
2333 sortedMap().tailMap(fromKey), predicate);
2659 return new SortedKeySet<K, V>(map().tailMap(fromElement));
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 357 milliseconds