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

/libcore/luni/src/main/java/java/util/
H A DSortedMap.java121 public SortedMap<K,V> tailMap(K startKey); method in interface:SortedMap
H A DNavigableMap.java31 * and {@code tailMap} differ from the like-named {@code
52 * {@link #tailMap(Object) tailMap(K)}
355 NavigableMap<K,V> tailMap(K fromKey, boolean inclusive); method in interface:NavigableMap
382 * <p>Equivalent to {@code tailMap(fromKey, true)}.
388 SortedMap<K,V> tailMap(K fromKey); method in interface:NavigableMap
H A DTreeMap.java716 public NavigableMap<K, V> tailMap(K from, boolean inclusive) { method in class:TreeMap
721 public SortedMap<K, V> tailMap(K fromInclusive) { method in class:TreeMap
1047 return TreeMap.this.tailMap(from, inclusive).navigableKeySet();
1051 return TreeMap.this.tailMap(fromInclusive, true).navigableKeySet();
1423 public NavigableMap<K, V> tailMap(K from, boolean inclusive) { method in class:TreeMap.BoundedMap
1428 public NavigableMap<K, V> tailMap(K fromInclusive) { method in class:TreeMap.BoundedMap
1631 return tailMap(from, inclusive).navigableKeySet();
1635 return tailMap(fromInclusive).navigableKeySet();
H A DCollections.java845 @Override public SortedMap<K, V> tailMap(K startKey) { method in class:Collections.SynchronizedSortedMap
847 return new SynchronizedSortedMap<K, V>(sm.tailMap(startKey),
1352 @Override public SortedMap<K, V> tailMap(K after) { method in class:Collections.UnmodifiableSortedMap
1353 return new UnmodifiableSortedMap<K, V>(sm.tailMap(after));
3383 @Override public SortedMap<K, V> tailMap(K fromKey) { method in class:Collections.CheckedSortedMap
3384 return new CheckedSortedMap<K, V>(sm.tailMap(fromKey), keyType, valueType);
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentNavigableMap.java46 ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive); method in interface:ConcurrentNavigableMap
67 ConcurrentNavigableMap<K,V> tailMap(K fromKey); method in interface:ConcurrentNavigableMap
H A DConcurrentSkipListMap.java1977 public ConcurrentNavigableMap<K,V> tailMap(K fromKey, method in class:ConcurrentSkipListMap
2008 public ConcurrentNavigableMap<K,V> tailMap(K fromKey) { method in class:ConcurrentSkipListMap
2009 return tailMap(fromKey, true);
2336 return new KeySet<E>(m.tailMap(fromElement, inclusive));
2441 * {@code tailMap} methods of their underlying maps.
2848 public SubMap<K,V> tailMap(K fromKey, method in class:ConcurrentSkipListMap.SubMap
2863 public SubMap<K,V> tailMap(K fromKey) { method in class:ConcurrentSkipListMap.SubMap
2864 return tailMap(fromKey, true);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DRefSortedMap.java221 public SortedMap<K, V> tailMap(K key) { method in class:RefSortedMap.SubMap
271 return tailMap(firstKey()).entrySet();
283 return tailMap(firstKey()).keySet();
294 public SortedMap<K, V> tailMap(K key) { method in class:RefSortedMap
299 return tailMap(firstKey()).values();
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 275 milliseconds