Home | History | Annotate | Download | only in util

Lines Matching refs:subMap

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);
279 return new SubMap(false, null, true, key);
290 public SortedMap<K, V> subMap(K startKey, K endKey) {
291 return new SubMap(true, startKey, true, endKey);
295 return new SubMap(true, key, false, null);