Home
last modified time | relevance | path

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

12345

/libcore/luni/src/test/java/libcore/java/util/
DOldAbstractSetTest.java92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
DAbstractCollectionTest.java64 new EmptyCollection().removeAll(null); in test_empty_removeAll_null()
/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/ojluni/src/main/java/java/net/
DCookieStore.java128 public boolean removeAll(); in removeAll() method
/libcore/ojluni/annotations/sdk/nullability/java/util/
DAbstractSet.annotated.java39 public boolean removeAll(@libcore.util.NonNull java.util.Collection<?> c) { throw new RuntimeExcept… in removeAll() method in AbstractSet
DCollection.annotated.java55 public boolean removeAll(@libcore.util.NonNull java.util.Collection<?> c); in removeAll() method
DArrayList.annotated.java81 public boolean removeAll(@libcore.util.NonNull java.util.Collection<?> c) { throw new RuntimeExcept… in removeAll() method in ArrayList
/libcore/ojluni/src/main/java/java/util/concurrent/
DCopyOnWriteArraySet.java351 public boolean removeAll(Collection<?> c) { in removeAll() method in CopyOnWriteArraySet
352 return al.removeAll(c); in removeAll()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DEnumSetTest.java1064 set.removeAll(null); in test_removeAll_LCollection()
1074 set.removeAll(null); in test_removeAll_LCollection()
1083 boolean result = set.removeAll(collection); in test_removeAll_LCollection()
1088 result = set.removeAll(collection); in test_removeAll_LCollection()
1092 result = set.removeAll(emptySet); in test_removeAll_LCollection()
1096 result = set.removeAll(emptyFooSet); in test_removeAll_LCollection()
1100 result = set.removeAll(emptyFooSet); in test_removeAll_LCollection()
1105 result = set.removeAll(setWithSubclass); in test_removeAll_LCollection()
1109 result = set.removeAll(setWithSubclass); in test_removeAll_LCollection()
1116 result = set.removeAll(anotherSet); in test_removeAll_LCollection()
[all …]
DEnumMapTest.java401 assertTrue("Remove does not success", set.removeAll(c)); in test_entrySet()
405 assertTrue("Remove does not success", set.removeAll(c)); in test_entrySet()
406 assertFalse("Should return false", set.removeAll(c)); in test_entrySet()
659 assertTrue("Should return true", set.removeAll(c)); in test_keySet()
661 assertFalse("Should return false", set.removeAll(c)); in test_keySet()
1047 assertTrue("Should return true", collection.removeAll(c)); in test_values()
1049 assertFalse("Should return false", collection.removeAll(c)); in test_values()
/libcore/ojluni/src/main/java/java/util/
DRegularEnumSet.java242 public boolean removeAll(Collection<?> c) { in removeAll() method in RegularEnumSet
244 return super.removeAll(c); in removeAll()
DAbstractSet.java168 public boolean removeAll(Collection<?> c) { in removeAll() method in AbstractSet
DCollection.java385 boolean removeAll(Collection<?> c); in removeAll() method
DJumboEnumSet.java297 public boolean removeAll(Collection<?> c) { in removeAll() method in JumboEnumSet
299 return super.removeAll(c); in removeAll()
DAbstractCollection.java370 public boolean removeAll(Collection<?> c) { in removeAll() method in AbstractCollection
DSet.java370 boolean removeAll(Collection<?> c); in removeAll() method
/libcore/ojluni/src/main/java/sun/nio/ch/
DFileLockTable.java68 public abstract List<FileLock> removeAll(); in removeAll() method in FileLockTable
198 public List<FileLock> removeAll() { in removeAll() method in SharedFileLockTable
DUtil.java333 public boolean removeAll(Collection<?> coll) { in ungrowableSet() method in Util
334 return s.removeAll(coll); in ungrowableSet()
DAsynchronousFileChannelImpl.java147 for (FileLock fl: fileLockTable.removeAll()) { in invalidateAllLocks()
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DCopyOnWriteArraySet.java96 public boolean removeAll(java.util.Collection<?> c) { in removeAll() method in CopyOnWriteArraySet
DCopyOnWriteArrayList.java167 public boolean removeAll(java.util.Collection<?> c) { in removeAll() method in CopyOnWriteArrayList
399 public boolean removeAll(java.util.Collection<?> c) { in removeAll() method in CopyOnWriteArrayList.COWSubList
/libcore/ojluni/src/test/java/nio/file/attribute/
DBasicFileAttributeViewCreationTimeTest.java131 TestUtil.removeAll(dir); in main()
DBasicFileAttributeViewTest.java140 TestUtil.removeAll(dir); in main()
/libcore/luni/src/test/java/libcore/java/net/
DAbstractCookiesTest.java539 assertTrue(cookieStore.removeAll()); in testCookieStoreNullUris()
547 assertTrue(cookieStore.removeAll()); in testCookieStoreRemoveAll()
551 cookieStore.removeAll()); // RI6 fails this in testCookieStoreRemoveAll()
802 public boolean removeAll() { in removeAll() method in AbstractCookiesTest.TestCookieStore
1112 assertTrue(cookieStore.removeAll()); in test_remove_LURI_LHttpCookie()
1130 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie()
1149 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie()
1159 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie()
1182 assertFalse(cookieStore.removeAll()); in test_removeAll()
1191 assertTrue(cookieStore.removeAll()); in test_removeAll()
[all …]
/libcore/ojluni/src/test/java/nio/file/
DTestUtil.java45 static public void removeAll(Path dir) throws IOException { in removeAll() method in TestUtil

12345