Searched defs:subMap (Results 1 - 25 of 40) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
H A DForwardingSortedMap.java86 public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:ForwardingSortedMap
87 return delegate().subMap(fromKey, toKey);
146 * A sensible default implementation of {@link #subMap(Object, Object)} in
148 * situations, you may wish to override {@link #subMap(Object, Object)} to
H A DStandardRowSortedTable.java125 public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) { method in class:StandardRowSortedTable.RowSortedMap
129 sortedBackingMap().subMap(fromKey, toKey), factory).rowMap();
H A DAbstractNavigableMap.java134 public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:AbstractNavigableMap
135 return subMap(fromKey, true, toKey, false);
H A DForwardingNavigableMap.java356 * A sensible definition of {@link #subMap(Object, Object)} in terms of
357 * {@link #subMap(Object, boolean, Object, boolean)}. If you override
358 * {@code subMap(K, boolean, K, boolean)}, you may wish to override {@code subMap} to forward to
363 return subMap(fromKey, true, toKey, false);
367 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { method in class:ForwardingNavigableMap
368 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive);
H A DTreeBasedTable.java216 @Override public SortedMap<C, V> subMap(C fromKey, C toKey) { method in class:TreeBasedTable.TreeRow
H A DTreeRangeSet.java176 rangesByLowerBound.subMap(lbToAdd, ubToAdd).clear();
221 rangesByLowerBound.subMap(rangeToRemove.lowerBound, rangeToRemove.upperBound).clear();
246 * upperBoundWindow represents the headMap/subMap/tailMap view of the entire "ranges by upper
262 private NavigableMap<Cut<C>, Range<C>> subMap(Range<Cut<C>> window) { method in class:TreeRangeSet.RangesByUpperBound
271 public NavigableMap<Cut<C>, Range<C>> subMap( method in class:TreeRangeSet.RangesByUpperBound
273 return subMap(Range.range(
280 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive)));
285 return subMap(Range.downTo(fromKey, BoundType.forBoolean(inclusive)));
405 * complementLowerBoundWindow represents the headMap/subMap/tailMap view of the entire
422 private NavigableMap<Cut<C>, Range<C>> subMap(Rang method in class:TreeRangeSet.ComplementRangesByLowerBound
432 public NavigableMap<Cut<C>, Range<C>> subMap( method in class:TreeRangeSet.ComplementRangesByLowerBound
645 private NavigableMap<Cut<C>, Range<C>> subMap(Range<Cut<C>> window) { method in class:TreeRangeSet.SubRangeSetRangesByLowerBound
655 public NavigableMap<Cut<C>, Range<C>> subMap( method in class:TreeRangeSet.SubRangeSetRangesByLowerBound
[all...]
H A DImmutableSortedMap.java507 * <p>The {@link SortedMap#subMap} documentation states that a submap of a
516 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { method in class:ImmutableSortedMap
517 return subMap(fromKey, true, toKey, false);
525 * <p>The {@link SortedMap#subMap} documentation states that a submap of a
536 public ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, method in class:ImmutableSortedMap
H A DAbstractMapBasedMultimap.java920 KeySet(final Map<K, Collection<V>> subMap) { argument
921 super(subMap);
983 SortedKeySet(SortedMap<K, Collection<V>> subMap) { argument
984 super(subMap);
1013 return new SortedKeySet(sortedMap().subMap(fromElement, toElement));
1024 NavigableKeySet(NavigableMap<K, Collection<V>> subMap) { argument
1025 super(subMap);
1092 sortedMap().subMap(fromElement, fromInclusive, toElement, toInclusive));
1233 * subMap() of a SortedAsMap.
1394 public SortedMap<K, Collection<V>> subMap( method in class:AbstractMapBasedMultimap.SortedAsMap
1533 public NavigableMap<K, Collection<V>> subMap(K fromKey, K toKey) { method in class:AbstractMapBasedMultimap.NavigableAsMap
1538 public NavigableMap<K, Collection<V>> subMap( method in class:AbstractMapBasedMultimap.NavigableAsMap
[all...]
H A DMaps.java864 public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Maps.SortedAsMapView
906 public NavigableMap<K, V> subMap( method in class:Maps.NavigableAsMapView
1964 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { method in class:Maps.TransformedEntriesSortedMap
1966 fromMap().subMap(fromKey, toKey), transformer);
2052 @Override public NavigableMap<K, V2> subMap( method in class:Maps.TransformedEntriesNavigableMap
2055 fromMap().subMap(fromKey, fromInclusive, toKey, toInclusive),
2059 @Override public NavigableMap<K, V2> subMap(K fromKey, K toKey) { method in class:Maps.TransformedEntriesNavigableMap
2060 return subMap(fromKey, true, toKey, false);
2810 return (SortedSet<K>) subMap(fromElement, toElement).keySet();
2859 @Override public SortedMap<K, V> subMap( method in class:Maps.FilteredEntrySortedMap
3001 public NavigableMap<K, V> subMap( method in class:Maps.FilteredEntryNavigableMap
3210 public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Maps.UnmodifiableNavigableMap
3227 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { method in class:Maps.UnmodifiableNavigableMap
3945 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { method in class:Maps.DescendingMap
3960 public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Maps.DescendingMap
[all...]
H A DSynchronized.java1088 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Synchronized.SynchronizedSortedMap
1090 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1482 @Override public NavigableMap<K, V> subMap( method in class:Synchronized.SynchronizedNavigableMap
1486 delegate().subMap(fromKey, fromInclusive, toKey, toInclusive),
1502 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Synchronized.SynchronizedNavigableMap
1503 return subMap(fromKey, true, toKey, false);
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedMapTest.java109 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:ForwardingSortedMapTest.StandardImplForwardingSortedMap
208 forward().subMap("first", "last");
209 assertEquals("[subMap(Object,Object)]", getCalls());
H A DForwardingNavigableMapTest.java116 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:ForwardingNavigableMapTest.StandardImplForwardingNavigableMap
364 forward().subMap("a", false, "b", true);
365 assertEquals("[subMap(Object,boolean,Object,boolean)]", getCalls());
H A DSynchronizedNavigableMapTest.java191 @Override public NavigableMap<K, V> subMap( method in class:SynchronizedNavigableMapTest.TestMap
194 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive);
197 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:SynchronizedNavigableMapTest.TestMap
198 return delegate().subMap(fromKey, true, toKey, false);
362 SortedMap<String, Integer> subMap = map.subMap("a", "b");
363 assertTrue(subMap instanceof SynchronizedSortedMap);
364 assertSame(mutex, ((SynchronizedSortedMap<String, Integer>) subMap).mutex);
369 NavigableMap<String, Integer> subMap = map.subMap("
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedMap.java274 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { method in class:ImmutableSortedMap
278 return newView(sortedDelegate.subMap(fromKey, toKey));
281 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { method in class:ImmutableSortedMap
H A DAbstractMapBasedMultimap.java842 KeySet(final Map<K, Collection<V>> subMap) { argument
843 super(subMap);
905 SortedKeySet(SortedMap<K, Collection<V>> subMap) { argument
906 super(subMap);
935 return new SortedKeySet(sortedMap().subMap(fromElement, toElement));
1071 * subMap() of a SortedAsMap.
1232 public SortedMap<K, Collection<V>> subMap(K fromKey, K toKey) { method in class:AbstractMapBasedMultimap.SortedAsMap
1233 return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
H A DSynchronized.java1072 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Synchronized.SynchronizedSortedMap
1074 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
H A DMaps.java826 public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Maps.SortedAsMapView
1655 @Override public SortedMap<K, V2> subMap(K fromKey, K toKey) { method in class:Maps.TransformedEntriesSortedMap
1657 fromMap().subMap(fromKey, toKey), transformer);
2277 return (SortedSet<K>) subMap(fromElement, toElement).keySet();
2326 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:Maps.FilteredEntrySortedMap
2328 sortedMap().subMap(fromKey, toKey), predicate);
2649 return new SortedKeySet<K, V>(map().subMap(fromElement, toElement));
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java248 @Override public NavigableMap<K, V> subMap( method in class:SafeTreeMap
250 return new SafeTreeMap<K, V>(delegate.subMap(
254 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { method in class:SafeTreeMap
255 return subMap(fromKey, true, toKey, false);
/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/robolectric/v3/libs/
H A Dsqlite4java-0.282.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/almworks/ com/almworks/sqlite4java/ javolution/ javolution/util/ javolution/ ...
/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/guice/lib/build/
H A Dguava-testlib-16.0.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 477 milliseconds

12