Home
last modified time | relevance | path

Searched refs:removeAll (Results 1 – 25 of 56) sorted by relevance

123

/libcore/luni/src/test/java/libcore/java/util/
DOldAbstractSetTest.java92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
/libcore/support/src/test/java/tests/support/
DSupport_CollectionTest.java75 .removeAll(myCollection)); in runTest()
77 .removeAll(myCollection)); // should not change the colletion in runTest()
/libcore/luni/src/main/java/java/util/concurrent/
DCopyOnWriteArraySet.java268 public boolean removeAll(Collection<?> c) { in removeAll() method in CopyOnWriteArraySet
269 return al.removeAll(c); in removeAll()
DConcurrentSkipListSet.java292 public boolean removeAll(Collection<?> c) { in removeAll() method in ConcurrentSkipListSet
/libcore/luni/src/main/java/java/net/
DCookieStore.java102 boolean removeAll(); in removeAll() method
DCookieStoreImpl.java138 public synchronized boolean removeAll() { in removeAll() method in CookieStoreImpl
/libcore/luni/src/main/java/java/util/
DCollection.java245 public boolean removeAll(Collection<?> collection); in removeAll() method
DSet.java152 public boolean removeAll(Collection<?> collection); in removeAll() method
DAbstractSet.java97 public boolean removeAll(Collection<?> collection) { in removeAll() method in AbstractSet
DList.java273 public boolean removeAll(Collection<?> collection); in removeAll() method
DMiniEnumSet.java165 public boolean removeAll(Collection<?> collection) { in removeAll() method in MiniEnumSet
185 return super.removeAll(collection); in removeAll()
DAbstractCollection.java273 public boolean removeAll(Collection<?> collection) { in removeAll() method in AbstractCollection
DHugeEnumSet.java266 public boolean removeAll(Collection<?> collection) { in removeAll() method in HugeEnumSet
290 return super.removeAll(collection); in removeAll()
DHashtable.java921 public boolean removeAll(Collection<?> collection) { in removeAll() method in Hashtable.KeySet
923 return super.removeAll(collection); in removeAll()
1020 public boolean removeAll(Collection<?> collection) { in removeAll() method in Hashtable.EntrySet
1022 return super.removeAll(collection); in removeAll()
DVector.java739 public synchronized boolean removeAll(Collection<?> collection) { in removeAll() method
740 return super.removeAll(collection); in removeAll()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DCookieStoreTest.java301 assertTrue(cookieStore.removeAll()); in test_remove_LURI_LHttpCookie()
319 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie()
338 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie()
348 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie()
371 assertFalse(cookieStore.removeAll()); in test_removeAll()
380 assertTrue(cookieStore.removeAll()); in test_removeAll()
384 assertFalse(cookieStore.removeAll()); in test_removeAll()
/libcore/luni/src/test/java/libcore/java/util/concurrent/
DCopyOnWriteArrayListTest.java93 list.removeAll(Arrays.asList()); in testRemoveAll()
96 list.removeAll(Arrays.asList("e")); in testRemoveAll()
99 list.removeAll(Arrays.asList("b", "c")); in testRemoveAll()
159 def.removeAll(Arrays.asList("c", "e", "h")); // the RI fails here in testSubListRemoveAll()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DEnumSetTest.java1032 set.removeAll(null); in test_removeAll_LCollection()
1042 set.removeAll(null); in test_removeAll_LCollection()
1051 boolean result = set.removeAll(collection); in test_removeAll_LCollection()
1056 result = set.removeAll(collection); in test_removeAll_LCollection()
1060 result = set.removeAll(emptySet); in test_removeAll_LCollection()
1064 result = set.removeAll(emptyFooSet); in test_removeAll_LCollection()
1068 result = set.removeAll(emptyFooSet); in test_removeAll_LCollection()
1073 result = set.removeAll(setWithSubclass); in test_removeAll_LCollection()
1077 result = set.removeAll(setWithSubclass); in test_removeAll_LCollection()
1084 result = set.removeAll(anotherSet); in test_removeAll_LCollection()
[all …]
DEnumMapTest.java392 assertTrue("Remove does not success", set.removeAll(c)); in test_entrySet()
396 assertTrue("Remove does not success", set.removeAll(c)); in test_entrySet()
397 assertFalse("Should return false", set.removeAll(c)); in test_entrySet()
650 assertTrue("Should return true", set.removeAll(c)); in test_keySet()
652 assertFalse("Should return false", set.removeAll(c)); in test_keySet()
1038 assertTrue("Should return true", collection.removeAll(c)); in test_values()
1040 assertFalse("Should return false", collection.removeAll(c)); in test_values()
DVectorTest.java918 v.removeAll(s); in test_removeAllLjava_util_Collection()
920 v.removeAll(l); in test_removeAllLjava_util_Collection()
926 v.removeAll(s); in test_removeAllLjava_util_Collection()
930 v.removeAll(l); in test_removeAllLjava_util_Collection()
935 v.removeAll(null); in test_removeAllLjava_util_Collection()
DAbstractCollectionTest.java168 assertTrue(ac.removeAll(Arrays.asList("0", "1", "2"))); in test_removeAllLjava_util_Collection()
/libcore/dalvik/src/main/java/dalvik/system/profiler/
DSamplingProfiler.java423 added.removeAll(o); in updateThreadHistory()
427 removed.removeAll(n); in updateThreadHistory()
/libcore/luni/src/main/java/java/nio/
DSelectorImpl.java384 public boolean removeAll(Collection<?> c) { in removeAll() method in SelectorImpl.UnaddableSet
385 return set.removeAll(c); in removeAll()
/libcore/luni/src/test/java/libcore/java/net/
DCookiesTest.java463 assertTrue(cookieStore.removeAll()); in testCookieStoreNullUris()
471 assertTrue(cookieStore.removeAll()); in testCookieStoreRemoveAll()
475 cookieStore.removeAll()); // RI6 fails this in testCookieStoreRemoveAll()
606 public boolean removeAll() { in removeAll() method in CookiesTest.TestCookieStore
/libcore/support/src/test/java/libcore/javax/net/ssl/
DSSLDefaultConfigurationAsserts.java199 elementsNotInContainer.removeAll(Arrays.asList(container)); in assertContainsAll()

123