Searched refs:hiInclusive (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | TreeMap.java | 1681 final boolean loInclusive, hiInclusive; field in TreeMap.NavigableSubMap 1685 boolean toEnd, K hi, boolean hiInclusive) { in NavigableSubMap() argument 1702 this.hiInclusive = hiInclusive; in NavigableSubMap() 1719 if (c > 0 || (c == 0 && !hiInclusive)) in tooHigh() 1755 (hiInclusive ? m.getFloorEntry(hi) : in absHighest() 1790 return (toEnd ? null : (hiInclusive ? in absHighFence() 2209 boolean toEnd, K hi, boolean hiInclusive) { in AscendingSubMap() argument 2210 super(m, fromStart, lo, loInclusive, toEnd, hi, hiInclusive); in AscendingSubMap() 2232 !hiInclusive && !inclusive)) in headMap() 2249 toEnd, hi, hiInclusive); in tailMap() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListMap.java | 2411 private final boolean hiInclusive; field in ConcurrentSkipListMap.SubMap 2435 this.hiInclusive = toInclusive; in SubMap() 2450 (c == 0 && !hiInclusive))); in tooHigh() 2477 return c < 0 || (c == 0 && hiInclusive); in isBeforeEnd() 2500 else if (hiInclusive) in hiNode() 2762 toInclusive = hiInclusive; in newSubMap() 2766 if (c > 0 || (c == 0 && !hiInclusive && toInclusive)) in newSubMap() 2807 hi, hiInclusive, !isDescending); in descendingMap()
|