Searched refs:hiInclusive (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | TreeMap.java | 1367 final boolean loInclusive, hiInclusive; field in TreeMap.NavigableSubMap 1371 boolean toEnd, K hi, boolean hiInclusive) { in NavigableSubMap() argument 1388 this.hiInclusive = hiInclusive; in NavigableSubMap() 1405 if (c > 0 || (c == 0 && !hiInclusive)) in tooHigh() 1441 (hiInclusive ? m.getFloorEntry(hi) : in absHighest() 1476 return (toEnd ? null : (hiInclusive ? in absHighFence() 1860 boolean toEnd, K hi, boolean hiInclusive) { in AscendingSubMap() argument 1861 super(m, fromStart, lo, loInclusive, toEnd, hi, hiInclusive); in AscendingSubMap() 1883 !hiInclusive && !inclusive)) in headMap() 1900 toEnd, hi, hiInclusive); in tailMap() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListMap.java | 2579 private final boolean hiInclusive; field in ConcurrentSkipListMap.SubMap 2603 this.hiInclusive = toInclusive; in SubMap() 2618 (c == 0 && !hiInclusive))); in tooHigh() 2645 if (c > 0 || (c == 0 && !hiInclusive)) in isBeforeEnd() 2670 else if (hiInclusive) in hiNode() 2943 toInclusive = hiInclusive; in newSubMap() 2947 if (c > 0 || (c == 0 && !hiInclusive && toInclusive)) in newSubMap() 2988 hi, hiInclusive, !isDescending); in descendingMap()
|