Searched refs:SynchronizedNavigableSet (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | Collections.java | 2636 return new SynchronizedNavigableSet<>(s); 2642 static class SynchronizedNavigableSet<E> 2652 SynchronizedNavigableSet(NavigableSet<E> s) { 2657 SynchronizedNavigableSet(NavigableSet<E> s, Object mutex) { 2670 return new SynchronizedNavigableSet<>(ns.descendingSet(), mutex); 2679 … return new SynchronizedNavigableSet<>(ns.subSet(fromElement, true, toElement, false), mutex); 2684 return new SynchronizedNavigableSet<>(ns.headSet(toElement, false), mutex); 2689 return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, true), mutex); 2695 …return new SynchronizedNavigableSet<>(ns.subSet(fromElement, fromInclusive, toElement, toInclusive… 2701 return new SynchronizedNavigableSet<>(ns.headSet(toElement, inclusive), mutex); [all …]
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | Collections.java | 2641 static class SynchronizedNavigableSet<E> extends java.util.Collections.SynchronizedSortedSet<E> class in Collections 2644 SynchronizedNavigableSet(java.util.NavigableSet<E> s) { in SynchronizedNavigableSet() method in Collections.SynchronizedNavigableSet 2649 SynchronizedNavigableSet(java.util.NavigableSet<E> s, java.lang.Object mutex) { in SynchronizedNavigableSet() method in Collections.SynchronizedNavigableSet
|