Searched refs:loInclusive (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | TreeMap.java | 1387 final boolean loInclusive, hiInclusive; field in TreeMap.NavigableSubMap 1390 boolean fromStart, K lo, boolean loInclusive, in NavigableSubMap() argument 1405 this.loInclusive = loInclusive; in NavigableSubMap() 1416 if (c < 0 || (c == 0 && !loInclusive)) in tooLow() 1453 (loInclusive ? m.getCeilingEntry(lo) : in absLowest() 1503 return (fromStart ? null : (loInclusive ? in absLowFence() 1879 boolean fromStart, K lo, boolean loInclusive, in AscendingSubMap() argument 1881 super(m, fromStart, lo, loInclusive, toEnd, hi, hiInclusive); in AscendingSubMap() 1908 fromStart, lo, loInclusive, in headMap() 1917 !loInclusive && !inclusive)) in tailMap() [all …]
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListMap.java | 2548 private final boolean loInclusive; field in ConcurrentSkipListMap.SubMap 2573 this.loInclusive = fromInclusive; in SubMap() 2583 (c == 0 && !loInclusive))); in tooLow() 2628 else if (loInclusive) in loNode() 2903 fromInclusive = loInclusive; in newSubMap() 2907 if (c < 0 || (c == 0 && !loInclusive && fromInclusive)) in newSubMap() 2958 return new SubMap<K,V>(m, lo, loInclusive, in descendingMap()
|