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

/libcore/ojluni/src/main/java/java/util/
H A DTreeMap.java1359 * loInclusive) and (toEnd, hi, hiInclusive). If fromStart is
1367 final boolean loInclusive, hiInclusive; field in class:TreeMap.NavigableSubMap
1371 boolean toEnd, K hi, boolean hiInclusive) {
1388 this.hiInclusive = hiInclusive;
1405 if (c > 0 || (c == 0 && !hiInclusive))
1441 (hiInclusive ? m.getFloorEntry(hi) :
1476 return (toEnd ? null : (hiInclusive ?
1860 boolean toEnd, K hi, boolean hiInclusive) {
1861 super(m, fromStart, lo, loInclusive, toEnd, hi, hiInclusive);
1369 NavigableSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
1858 AscendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
1948 DescendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java2579 private final boolean hiInclusive; field in class:ConcurrentSkipListMap.SubMap
2603 this.hiInclusive = toInclusive;
2618 (c == 0 && !hiInclusive)));
2645 if (c > 0 || (c == 0 && !hiInclusive))
2670 else if (hiInclusive)
2943 toInclusive = hiInclusive;
2947 if (c > 0 || (c == 0 && !hiInclusive && toInclusive))
2988 hi, hiInclusive, !isDescending);

Completed in 14 milliseconds