Searched defs:loInclusive (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
1362 * if loInclusive is true, lo is the inclusive bound, else lo
1367 final boolean loInclusive, hiInclusive; field in class:TreeMap.NavigableSubMap
1370 boolean fromStart, K lo, boolean loInclusive,
1385 this.loInclusive = loInclusive;
1396 if (c < 0 || (c == 0 && !loInclusive))
1433 (loInclusive ? m.getCeilingEntry(lo) :
1483 return (fromStart ? null : (loInclusive ?
1859 boolean fromStart, K lo, boolean loInclusive,
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.java2577 private final boolean loInclusive; field in class:ConcurrentSkipListMap.SubMap
2602 this.loInclusive = fromInclusive;
2612 (c == 0 && !loInclusive)));
2657 else if (loInclusive)
2932 fromInclusive = loInclusive;
2936 if (c < 0 || (c == 0 && !loInclusive && fromInclusive))
2987 return new SubMap<K,V>(m, lo, loInclusive,

Completed in 12 milliseconds