Searched refs:hiInclusive (Results 1 - 2 of 2) sorted by relevance
/openjdk7/jdk/src/share/classes/java/util/ |
H A D | TreeMap.java | 1246 * loInclusive) and (toEnd, hi, hiInclusive). If fromStart is 1254 final boolean loInclusive, hiInclusive; field in class:TreeMap.NavigableSubMap 1258 boolean toEnd, K hi, boolean hiInclusive) { 1275 this.hiInclusive = hiInclusive; 1292 if (c > 0 || (c == 0 && !hiInclusive)) 1328 (hiInclusive ? m.getFloorEntry(hi) : 1363 return (toEnd ? null : (hiInclusive ? 1698 boolean toEnd, K hi, boolean hiInclusive) { 1699 super(m, fromStart, lo, loInclusive, toEnd, hi, hiInclusive); 1256 NavigableSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument 1696 AscendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument 1774 DescendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument [all...] |
/openjdk7/jdk/src/share/classes/java/util/concurrent/ |
H A D | ConcurrentSkipListMap.java | 2488 private final boolean hiInclusive; field in class:ConcurrentSkipListMap.SubMap 2511 this.hiInclusive = toInclusive; 2529 if (c > 0 || (c == 0 && !hiInclusive)) 2558 if (c > 0 || (c == 0 && !hiInclusive)) 2583 else if (hiInclusive) 2849 toInclusive = hiInclusive; 2853 if (c > 0 || (c == 0 && !hiInclusive && toInclusive)) 2898 hi, hiInclusive, !isDescending);
|
Completed in 81 milliseconds