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

/libcore/ojluni/src/main/java/java/util/
H A DTreeMap.java1379 * loInclusive) and (toEnd, hi, hiInclusive). If fromStart is
1387 final boolean loInclusive, hiInclusive; field in class:TreeMap.NavigableSubMap
1391 boolean toEnd, K hi, boolean hiInclusive) {
1408 this.hiInclusive = hiInclusive;
1425 if (c > 0 || (c == 0 && !hiInclusive))
1461 (hiInclusive ? m.getFloorEntry(hi) :
1496 return (toEnd ? null : (hiInclusive ?
1880 boolean toEnd, K hi, boolean hiInclusive) {
1881 super(m, fromStart, lo, loInclusive, toEnd, hi, hiInclusive);
1389 NavigableSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
1878 AscendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
1970 DescendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java2550 private final boolean hiInclusive; field in class:ConcurrentSkipListMap.SubMap
2574 this.hiInclusive = toInclusive;
2589 (c == 0 && !hiInclusive)));
2616 if (c > 0 || (c == 0 && !hiInclusive))
2641 else if (hiInclusive)
2914 toInclusive = hiInclusive;
2918 if (c > 0 || (c == 0 && !hiInclusive && toInclusive))
2959 hi, hiInclusive, !isDescending);

Completed in 48 milliseconds