Home
last modified time | relevance | path

Searched refs:synchronizedSet (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/javax/security/auth/
DSubject.java156 this.principals = Collections.synchronizedSet in Subject()
158 this.pubCredentials = Collections.synchronizedSet in Subject()
160 this.privCredentials = Collections.synchronizedSet in Subject()
209 this.principals = Collections.synchronizedSet(new SecureSet<Principal> in Subject()
211 this.pubCredentials = Collections.synchronizedSet(new SecureSet<Object> in Subject()
213 this.privCredentials = Collections.synchronizedSet(new SecureSet<Object> in Subject()
978 principals = Collections.synchronizedSet(new SecureSet<Principal>
983 principals = Collections.synchronizedSet
989 this.pubCredentials = Collections.synchronizedSet
991 this.privCredentials = Collections.synchronizedSet
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DCollections2Test.java158 Collections.synchronizedSet(null); in test_synchronizedSetLjava_util_Set()
561 testSetForEach(Collections.synchronizedSet(set)); in test_Set_forEach()
DCollectionsTest.java1483 Set synchSet = Collections.synchronizedSet(smallSet); in test_synchronizedSetLjava_util_Set()
1514 Set mySet = Collections.synchronizedSet(smallSet); in test_synchronizedSetLjava_util_Set()
1522 new Support_SetTest("", Collections.synchronizedSet(smallSet)) in test_synchronizedSetLjava_util_Set()
1526 mySet = Collections.synchronizedSet(smallSet); in test_synchronizedSetLjava_util_Set()
1595 Set synchSet = Collections.synchronizedSet(smallSet); in test_synchronizedSortedSetLjava_util_SortedSet()
/libcore/ojluni/src/main/java/java/util/
DHashtable.java643 keySet = Collections.synchronizedSet(new KeySet(), this); in keySet()
683 entrySet = Collections.synchronizedSet(new EntrySet(), this); in entrySet()
/libcore/luni/src/test/java/libcore/java/util/
DOldCollectionsTest.java186 Collections.synchronizedSet(null); in test_synchronizedSetLjava_util_Set()
/libcore/ojluni/annotations/sdk/nullability/java/util/
DCollections.annotated.java92 …l public static <T> java.util.Set<@libcore.util.NullFromTypeParam T> synchronizedSet(@libcore.util… in synchronizedSet() method in Collections