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

12

/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.java91 public SortedMap<K, V> tailMap(K fromKey) { method in class:ForwardingSortedMap
92 return delegate().tailMap(fromKey);
123 * firstKey()} method of {@link #tailMap}. If you override {@link #tailMap},
134 Object ceilingKey = self.tailMap(key).firstKey();
147 * terms of {@link #headMap(Object)} and {@link #tailMap(Object)}. In some
155 return tailMap(fromKey).headMap(toKey);
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 DAbstractNavigableMap.java100 return tailMap(key, true).firstEntry();
106 return tailMap(key, false).firstEntry();
144 public SortedMap<K, V> tailMap(K fromKey) { method in class:AbstractNavigableMap
145 return tailMap(fromKey, true);
H A DForwardingNavigableMap.java124 * {@link #tailMap(Object, boolean)}. If you override {@code tailMap}, you may wish to override
128 return tailMap(key, true).firstEntry();
152 * {@link #tailMap(Object, boolean)}. If you override {@code tailMap}, you may wish to override
156 return tailMap(key, false).firstEntry();
377 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:ForwardingNavigableMap
378 return delegate().tailMap(fromKey, inclusive);
391 * A sensible definition of {@link #tailMap(Object)} in terms of
392 * {@link #tailMap(Objec
[all...]
H A DTreeBasedTable.java227 @Override public SortedMap<C, V> tailMap(C fromKey) { method in class:TreeBasedTable.TreeRow
272 map = map.tailMap(lowerBound);
H A DTreeRangeSet.java246 * upperBoundWindow represents the headMap/subMap/tailMap view of the entire "ranges by upper
284 public NavigableMap<Cut<C>, Range<C>> tailMap(Cut<C> fromKey, boolean inclusive) { method in class:TreeRangeSet.RangesByUpperBound
333 backingItr = rangesByLowerBound.tailMap(lowerEntry.getKey(), true).values().iterator();
335 backingItr = rangesByLowerBound.tailMap(upperBoundWindow.lowerEndpoint(), true)
405 * complementLowerBoundWindow represents the headMap/subMap/tailMap view of the entire
445 public NavigableMap<Cut<C>, Range<C>> tailMap(Cut<C> fromKey, boolean inclusive) { method in class:TreeRangeSet.ComplementRangesByLowerBound
467 positiveRanges = positiveRangesByUpperBound.tailMap(
576 // tailMap respects the current window
577 Entry<Cut<C>, Range<C>> firstEntry = tailMap(cut, true).firstEntry();
623 * lowerBoundWindow is the headMap/subMap/tailMap vie
667 public NavigableMap<Cut<C>, Range<C>> tailMap(Cut<C> fromKey, boolean inclusive) { method in class:TreeRangeSet.SubRangeSetRangesByLowerBound
[all...]
H A DImmutableSortedMap.java542 return headMap(toKey, toInclusive).tailMap(fromKey, fromInclusive);
549 * <p>The {@link SortedMap#tailMap} documentation states that a submap of a
556 public ImmutableSortedMap<K, V> tailMap(K fromKey) { method in class:ImmutableSortedMap
557 return tailMap(fromKey, true);
565 * <p>The {@link SortedMap#tailMap} documentation states that a submap of a
574 public abstract ImmutableSortedMap<K, V> tailMap(K fromKey, boolean inclusive); method in class:ImmutableSortedMap
598 return tailMap(key, true).firstEntry();
608 return tailMap(key, false).firstEntry();
H A DAbstractMapBasedMultimap.java1018 return new SortedKeySet(sortedMap().tailMap(fromElement));
1102 return new NavigableKeySet(sortedMap().tailMap(fromElement, inclusive));
1232 * Usually the same as map, but smaller for the headMap(), tailMap(), or
1399 public SortedMap<K, Collection<V>> tailMap(K fromKey) { method in class:AbstractMapBasedMultimap.SortedAsMap
1400 return new SortedAsMap(sortedMap().tailMap(fromKey));
1554 public NavigableMap<K, Collection<V>> tailMap(K fromKey) { method in class:AbstractMapBasedMultimap.NavigableAsMap
1555 return tailMap(fromKey, true);
1559 public NavigableMap<K, Collection<V>> tailMap(K fromKey, boolean inclusive) { method in class:AbstractMapBasedMultimap.NavigableAsMap
1560 return new NavigableAsMap(sortedMap().tailMap(fromKey, inclusive));
H A DMaps.java874 public SortedMap<K, V> tailMap(K fromKey) { method in class:Maps.SortedAsMapView
917 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:Maps.NavigableAsMapView
1969 @Override public SortedMap<K, V2> tailMap(K fromKey) { method in class:Maps.TransformedEntriesSortedMap
1970 return transformEntries(fromMap().tailMap(fromKey), transformer);
2063 @Override public NavigableMap<K, V2> tailMap(K fromKey) { method in class:Maps.TransformedEntriesNavigableMap
2064 return tailMap(fromKey, true);
2067 @Override public NavigableMap<K, V2> tailMap(K fromKey, boolean inclusive) { method in class:Maps.TransformedEntriesNavigableMap
2069 fromMap().tailMap(fromKey, inclusive), transformer);
2820 return (SortedSet<K>) tailMap(fromElement).keySet();
2864 @Override public SortedMap<K, V> tailMap( method in class:Maps.FilteredEntrySortedMap
3013 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:Maps.FilteredEntryNavigableMap
3220 public SortedMap<K, V> tailMap(K fromKey) { method in class:Maps.UnmodifiableNavigableMap
3241 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:Maps.UnmodifiableNavigableMap
3955 public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:Maps.DescendingMap
3970 public SortedMap<K, V> tailMap(K fromKey) { method in class:Maps.DescendingMap
[all...]
H A DSynchronized.java1094 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:Synchronized.SynchronizedSortedMap
1096 return sortedMap(delegate().tailMap(fromKey), mutex);
1491 @Override public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:Synchronized.SynchronizedNavigableMap
1494 delegate().tailMap(fromKey, inclusive), mutex);
1506 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:Synchronized.SynchronizedNavigableMap
1507 return tailMap(fromKey, true);
/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/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java258 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:SafeTreeMap
259 return tailMap(fromKey, true);
262 @Override public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:SafeTreeMap
264 delegate.tailMap(checkValid(fromKey), inclusive));
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingNavigableMapTest.java211 public SortedMap<K, V> tailMap(K fromKey) { method in class:ForwardingNavigableMapTest.StandardImplForwardingNavigableMap
374 forward().tailMap("a", false);
375 assertEquals("[tailMap(Object,boolean)]", getCalls());
H A DSynchronizedNavigableMapTest.java201 @Override public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { method in class:SynchronizedNavigableMapTest.TestMap
203 return delegate().tailMap(fromKey, inclusive);
206 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:SynchronizedNavigableMapTest.TestMap
207 return tailMap(fromKey, true);
377 SortedMap<String, Integer> subMap = map.tailMap("a");
384 NavigableMap<String, Integer> subMap = map.tailMap("a", true);
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/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/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 2993 milliseconds

12