Searched defs:fromStart (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DTreeMap.java1358 * Endpoints are represented as triples (fromStart, lo,
1359 * loInclusive) and (toEnd, hi, hiInclusive). If fromStart is
1366 final boolean fromStart, toEnd; field in class:TreeMap.NavigableSubMap
1370 boolean fromStart, K lo, boolean loInclusive,
1372 if (!fromStart && !toEnd) {
1376 if (!fromStart) // type check
1383 this.fromStart = fromStart;
1394 if (!fromStart) {
1416 return (fromStart ||
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
2048 private boolean fromStart = false, toEnd = false; field in class:TreeMap.SubMap
[all...]

Completed in 509 milliseconds