Searched refs:loInclusive (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 1370 boolean fromStart, K lo, boolean loInclusive, in NavigableSubMap() argument 1385 this.loInclusive = loInclusive; in NavigableSubMap() 1396 if (c < 0 || (c == 0 && !loInclusive)) in tooLow() 1433 (loInclusive ? m.getCeilingEntry(lo) : in absLowest() 1483 return (fromStart ? null : (loInclusive ? in absLowFence() 1859 boolean fromStart, K lo, boolean loInclusive, in AscendingSubMap() argument 1861 super(m, fromStart, lo, loInclusive, toEnd, hi, hiInclusive); in AscendingSubMap() 1887 fromStart, lo, loInclusive, in headMap() 1895 !loInclusive && !inclusive)) in tailMap() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListMap.java | 2577 private final boolean loInclusive; field in ConcurrentSkipListMap.SubMap 2602 this.loInclusive = fromInclusive; in SubMap() 2612 (c == 0 && !loInclusive))); in tooLow() 2657 else if (loInclusive) in loNode() 2932 fromInclusive = loInclusive; in newSubMap() 2936 if (c < 0 || (c == 0 && !loInclusive && fromInclusive)) in newSubMap() 2987 return new SubMap<K,V>(m, lo, loInclusive, in descendingMap()
|