HomeSort by relevance Sort by last modified time
    Searched defs:SubMap (Results 1 - 3 of 3) sorted by null

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
RefSortedMap.java 90 class SubMap extends java.util.AbstractMap<K, V>
96 SubMap(boolean hasFirst, K first, boolean hasLast, K last) {
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);
211 public SortedMap<K, V> subMap(K startKey, K endKey) {
218 return new SubMap(true, startKey, true, endKey);
225 return new SubMap(true, key, hasEnd, end)
    [all...]
HashMapTest.java 188 SubMap map2 = new SubMap(map);
770 class SubMap<K, V> extends HashMap<K, V> {
771 public SubMap(Map<? extends K, ? extends V> m) {
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java 632 * fence are null. Needed mainly in submap operations.
643 * or equal to fence. Needed mainly in submap operations.
    [all...]

Completed in 973 milliseconds