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

/libcore/luni/src/main/java/java/util/
H A DTreeMap.java700 return new BoundedMap(true, from, fromBound, to, toBound);
704 return new BoundedMap(true, fromInclusive, INCLUSIVE, toExclusive, EXCLUSIVE);
709 return new BoundedMap(true, null, NO_BOUND, to, toBound);
713 return new BoundedMap(true, null, NO_BOUND, toExclusive, EXCLUSIVE);
718 return new BoundedMap(true, from, fromBound, null, NO_BOUND);
722 return new BoundedMap(true, fromInclusive, INCLUSIVE, null, NO_BOUND);
726 return new BoundedMap(false, null, NO_BOUND, null, NO_BOUND);
730 return new BoundedMap(false, null, NO_BOUND, null, NO_BOUND).navigableKeySet();
1055 return new BoundedMap(false, null, NO_BOUND, null, NO_BOUND).navigableKeySet();
1096 final class BoundedMap extend class in class:TreeMap
1103 BoundedMap(boolean ascending, K from, Bound fromBound, K to, Bound toBound) { method in class:TreeMap.BoundedMap
[all...]

Completed in 31 milliseconds