Searched defs:SubMap (Results 1 - 4 of 4) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DRefSortedMap.java90 class SubMap extends java.util.AbstractMap<K, V> class in class:RefSortedMap
96 SubMap(boolean hasFirst, K first, boolean hasLast, K last) { method in class:RefSortedMap.SubMap
114 int offset = SubMap.this.size() > 0 ?
115 bsearch(SubMap.this.firstKey()) - 1 :
153 int lastIdx = bsearch(SubMap.this.lastKey());
154 int firstIdx = bsearch(SubMap.this.firstKey());
192 return new SubMap(hasStart, start, true, key);
218 return new SubMap(true, startKey, true, endKey);
225 return new SubMap(true, key, hasEnd, end);
279 return new SubMap(fals
[all...]
H A DHashMapTest.java948 class SubMap<K, V> extends HashMap<K, V> { class in class:HashMapTest
949 public SubMap(Map<? extends K, ? extends V> m) { method in class:HashMapTest.SubMap
/libcore/ojluni/src/main/java/java/util/
H A DTreeMap.java2039 * support NavigableMap. It translates an old-version SubMap into
2045 private class SubMap extends AbstractMap<K,V> class in class:TreeMap
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java1897 return (dm != null) ? dm : (descendingMap = new SubMap<K,V>
2056 return new SubMap<K,V>
2069 return new SubMap<K,V>
2082 return new SubMap<K,V>
2386 : ((SubMap<K,V>)m).new SubMapKeyIterator();
2436 : ((SubMap<K,V>)m).new SubMapKeyIterator();
2448 : ((SubMap<K,V>)m).new SubMapValueIterator();
2460 : ((SubMap<K,V>)m).new SubMapValueIterator();
2469 ((SubMap<K,V>)m).new SubMapEntryIterator();
2489 : ((SubMap<
2566 static final class SubMap<K,V> extends AbstractMap<K,V> class in class:ConcurrentSkipListMap
2591 SubMap(ConcurrentSkipListMap<K,V> map, method in class:ConcurrentSkipListMap.SubMap
[all...]

Completed in 307 milliseconds