Searched refs:SynchronizedSortedSet (Results 1 – 3 of 3) sorted by relevance
20 import com.google.common.collect.Synchronized.SynchronizedSortedSet;187 assertTrue(headSet instanceof SynchronizedSortedSet); in testHeadSet_E()188 assertSame(MUTEX, ((SynchronizedSortedSet<String>) headSet).mutex); in testHeadSet_E()201 assertTrue(subSet instanceof SynchronizedSortedSet); in testSubSet_E_E()202 assertSame(MUTEX, ((SynchronizedSortedSet<String>) subSet).mutex); in testSubSet_E_E()215 assertTrue(tailSet instanceof SynchronizedSortedSet); in testTailSet_E()216 assertSame(MUTEX, ((SynchronizedSortedSet<String>) tailSet).mutex); in testTailSet_E()
228 return new SynchronizedSortedSet<E>(set, mutex); in sortedSet()231 static class SynchronizedSortedSet<E> extends SynchronizedSet<E> class in Synchronized233 SynchronizedSortedSet(SortedSet<E> delegate, @Nullable Object mutex) { in SynchronizedSortedSet() method in Synchronized.SynchronizedSortedSet
244 return new SynchronizedSortedSet<E>(set, mutex); in sortedSet()247 static class SynchronizedSortedSet<E> extends SynchronizedSet<E> class in Synchronized249 SynchronizedSortedSet(SortedSet<E> delegate, @Nullable Object mutex) { in SynchronizedSortedSet() method in Synchronized.SynchronizedSortedSet1226 static class SynchronizedNavigableSet<E> extends SynchronizedSortedSet<E>