/libcore/luni/src/test/java/libcore/java/util/ |
D | OldAbstractSetTest.java | 92 as.removeAll(null); 100 as.removeAll(c); 108 as.removeAll(c);
|
/libcore/support/src/test/java/tests/support/ |
D | Support_CollectionTest.java | 75 .removeAll(myCollection)); in runTest() 77 .removeAll(myCollection)); // should not change the colletion in runTest()
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArraySet.java | 268 public boolean removeAll(Collection<?> c) { in removeAll() method in CopyOnWriteArraySet 269 return al.removeAll(c); in removeAll()
|
D | ConcurrentSkipListSet.java | 292 public boolean removeAll(Collection<?> c) { in removeAll() method in ConcurrentSkipListSet
|
/libcore/luni/src/main/java/java/net/ |
D | CookieStore.java | 102 boolean removeAll(); in removeAll() method
|
D | CookieStoreImpl.java | 138 public synchronized boolean removeAll() { in removeAll() method in CookieStoreImpl
|
/libcore/luni/src/main/java/java/util/ |
D | Collection.java | 245 public boolean removeAll(Collection<?> collection); in removeAll() method
|
D | Set.java | 152 public boolean removeAll(Collection<?> collection); in removeAll() method
|
D | AbstractSet.java | 97 public boolean removeAll(Collection<?> collection) { in removeAll() method in AbstractSet
|
D | List.java | 273 public boolean removeAll(Collection<?> collection); in removeAll() method
|
D | MiniEnumSet.java | 165 public boolean removeAll(Collection<?> collection) { in removeAll() method in MiniEnumSet 185 return super.removeAll(collection); in removeAll()
|
D | AbstractCollection.java | 273 public boolean removeAll(Collection<?> collection) { in removeAll() method in AbstractCollection
|
D | HugeEnumSet.java | 266 public boolean removeAll(Collection<?> collection) { in removeAll() method in HugeEnumSet 290 return super.removeAll(collection); in removeAll()
|
D | Hashtable.java | 921 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()
|
D | Vector.java | 739 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/ |
D | CookieStoreTest.java | 301 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/ |
D | CopyOnWriteArrayListTest.java | 93 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/ |
D | EnumSetTest.java | 1032 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 …]
|
D | EnumMapTest.java | 392 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()
|
D | VectorTest.java | 918 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()
|
D | AbstractCollectionTest.java | 168 assertTrue(ac.removeAll(Arrays.asList("0", "1", "2"))); in test_removeAllLjava_util_Collection()
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
D | SamplingProfiler.java | 423 added.removeAll(o); in updateThreadHistory() 427 removed.removeAll(n); in updateThreadHistory()
|
/libcore/luni/src/main/java/java/nio/ |
D | SelectorImpl.java | 384 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/ |
D | CookiesTest.java | 463 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/ |
D | SSLDefaultConfigurationAsserts.java | 199 elementsNotInContainer.removeAll(Arrays.asList(container)); in assertContainsAll()
|