Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedNavigableSetTest.java20 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()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DSynchronized.java228 return new SynchronizedSortedSet<E>(set, mutex); in sortedSet()
231 static class SynchronizedSortedSet<E> extends SynchronizedSet<E> class in Synchronized
233 SynchronizedSortedSet(SortedSet<E> delegate, @Nullable Object mutex) { in SynchronizedSortedSet() method in Synchronized.SynchronizedSortedSet
/external/guava/guava/src/com/google/common/collect/
DSynchronized.java244 return new SynchronizedSortedSet<E>(set, mutex); in sortedSet()
247 static class SynchronizedSortedSet<E> extends SynchronizedSet<E> class in Synchronized
249 SynchronizedSortedSet(SortedSet<E> delegate, @Nullable Object mutex) { in SynchronizedSortedSet() method in Synchronized.SynchronizedSortedSet
1226 static class SynchronizedNavigableSet<E> extends SynchronizedSortedSet<E>