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.java2234 return new SynchronizedSortedSet<>(s);
2240 static class SynchronizedSortedSet<E>
2248 SynchronizedSortedSet(SortedSet<E> s) {
2252 SynchronizedSortedSet(SortedSet<E> s, Object mutex) {
2263 return new SynchronizedSortedSet<>(
2269 return new SynchronizedSortedSet<>(ss.headSet(toElement), mutex);
2274 return new SynchronizedSortedSet<>(ss.tailSet(fromElement),mutex);
2334 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