Home
last modified time | relevance | path

Searched refs:isDescending (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/util/Collections/
DEmptyNavigableSet.java103 public static final boolean isDescending(SortedSet<?> set) { in isDescending() method in EmptyNavigableSet
272 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSet()
285 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSetRanges()
320 subSet.headSet(isDescending(subSet) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadSetRanges()
339 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges()
DEmptyNavigableMap.java96 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
253 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
265 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
300 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
319 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2413 final boolean isDescending; field in ConcurrentSkipListMap.SubMap
2426 boolean isDescending) { in SubMap() argument
2436 this.isDescending = isDescending; in SubMap()
2585 if (isDescending) { // adjust relation for direction in getNearEntry()
2606 if (isDescending) { // adjust relation for direction in getNearKey()
2727 if (isDescending) in comparator()
2740 if (isDescending) { // flip senses in newSubMap()
2771 toKey, toInclusive, isDescending); in newSubMap()
2807 hi, hiInclusive, !isDescending); in descendingMap()
2845 return isDescending ? highestKey() : lowestKey(); in firstKey()
[all …]