Home
last modified time | relevance | path

Searched refs:SynchronizedSortedSet (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DCollections.java2540 return new SynchronizedSortedSet<>(s);
2546 static class SynchronizedSortedSet<E>
2556 SynchronizedSortedSet(SortedSet<E> s) {
2560 SynchronizedSortedSet(SortedSet<E> s, Object mutex) {
2571 return new SynchronizedSortedSet<>(
2577 return new SynchronizedSortedSet<>(ss.headSet(toElement), mutex);
2582 return new SynchronizedSortedSet<>(ss.tailSet(fromElement),mutex);
2643 extends SynchronizedSortedSet<E>
/libcore/ojluni/annotations/hiddenapi/java/util/
DCollections.java2641 static class SynchronizedNavigableSet<E> extends java.util.Collections.SynchronizedSortedSet<E>
2818 static class SynchronizedSortedSet<E> extends java.util.Collections.SynchronizedSet<E> class in Collections
2821 SynchronizedSortedSet(java.util.SortedSet<E> s) { in SynchronizedSortedSet() method in Collections.SynchronizedSortedSet
2826 SynchronizedSortedSet(java.util.SortedSet<E> s, java.lang.Object mutex) { in SynchronizedSortedSet() method in Collections.SynchronizedSortedSet