Searched refs:removeAll (Results 1 - 25 of 78) sorted by relevance

1234

/libcore/ojluni/src/main/java/java/net/
H A DCookieStore.java128 public boolean removeAll(); method in interface:CookieStore
/libcore/luni/src/test/java/libcore/java/util/
H A DOldAbstractSetTest.java92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
H A DAbstractCollectionTest.java64 new EmptyCollection().removeAll(null);
80 * An AbstractCollection that does not override removeAll() / retainAll().
/libcore/ojluni/src/main/java/java/util/
H A DSet.java331 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
343 boolean removeAll(Collection<?> c); method in interface:Set
H A DAbstractSet.java156 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
168 public boolean removeAll(Collection<?> c) { method in class:AbstractSet
H A DCollection.java371 * @throws UnsupportedOperationException if the <tt>removeAll</tt> method
385 boolean removeAll(Collection<?> c); method in interface:Collection
H A DRegularEnumSet.java242 public boolean removeAll(Collection<?> c) { method in class:RegularEnumSet
244 return super.removeAll(c);
H A DList.java344 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
356 boolean removeAll(Collection<?> c); method in interface:List
H A DJumboEnumSet.java297 public boolean removeAll(Collection<?> c) { method in class:JumboEnumSet
299 return super.removeAll(c);
H A DAbstractCollection.java370 public boolean removeAll(Collection<?> c) { method in class:AbstractCollection
/libcore/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java73 // removeAll
74 assertTrue("CollectionTest - a) removeAll failed", col
75 .removeAll(myCollection));
76 assertTrue("CollectionTest - b) removeAll failed", !col
77 .removeAll(myCollection)); // should not change the colletion
79 assertTrue("CollectionTest - c) removeAll failed", !col
81 assertTrue("CollectionTest - d) removeAll failed", !col
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArraySet.java351 public boolean removeAll(Collection<?> c) { method in class:CopyOnWriteArraySet
352 return al.removeAll(c);
/libcore/ojluni/src/test/java/nio/file/attribute/
H A DBasicFileAttributeViewCreationTimeTest.java131 TestUtil.removeAll(dir);
H A DBasicFileAttributeViewTest.java140 TestUtil.removeAll(dir);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DEnumSetTest.java1028 * java.util.EnumSet#removeAll(Collection)
1034 set.removeAll(null);
1044 set.removeAll(null);
1053 boolean result = set.removeAll(collection);
1058 result = set.removeAll(collection);
1062 result = set.removeAll(emptySet);
1066 result = set.removeAll(emptyFooSet);
1070 result = set.removeAll(emptyFooSet);
1075 result = set.removeAll(setWithSubclass);
1079 result = set.removeAll(setWithSubclas
[all...]
H A DEnumMapTest.java401 assertTrue("Remove does not success", set.removeAll(c));
405 assertTrue("Remove does not success", set.removeAll(c));
406 assertFalse("Should return false", set.removeAll(c));
659 assertTrue("Should return true", set.removeAll(c));
661 assertFalse("Should return false", set.removeAll(c));
1047 assertTrue("Should return true", collection.removeAll(c));
1049 assertFalse("Should return false", collection.removeAll(c));
H A DAbstractCollectionTest.java134 * java.util.AbstractCollection#removeAll(java.util.Collection)
168 assertTrue(ac.removeAll(Arrays.asList("0", "1", "2")));
/libcore/ojluni/src/test/java/nio/file/
H A DTestUtil.java45 static public void removeAll(Path dir) throws IOException { method in class:TestUtil
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileLockTable.java68 public abstract List<FileLock> removeAll(); method in class:FileLockTable
198 public List<FileLock> removeAll() { method in class:SharedFileLockTable
H A DUtil.java249 public boolean removeAll(Collection<?> coll) {
250 return s.removeAll(coll);
H A DAsynchronousFileChannelImpl.java147 for (FileLock fl: fileLockTable.removeAll()) {
/libcore/luni/src/test/java/libcore/java/net/
H A DAbstractCookiesTest.java539 assertTrue(cookieStore.removeAll());
547 assertTrue(cookieStore.removeAll());
550 assertFalse("Expected removeAll() to return false when the call doesn't mutate the store",
551 cookieStore.removeAll()); // RI6 fails this
802 public boolean removeAll() { method in class:AbstractCookiesTest.TestCookieStore
1112 assertTrue(cookieStore.removeAll());
1130 cookieStore.removeAll();
1149 cookieStore.removeAll();
1159 cookieStore.removeAll();
1182 assertFalse(cookieStore.removeAll());
1525 public boolean removeAll() { method in class:AbstractCookiesTest.FakeSingleCookieStore
[all...]
/libcore/luni/src/test/java/libcore/java/util/concurrent/
H A DCopyOnWriteArrayListTest.java94 list.removeAll(Arrays.asList());
97 list.removeAll(Arrays.asList("e"));
100 list.removeAll(Arrays.asList("b", "c"));
160 def.removeAll(Arrays.asList("c", "e", "h")); // the RI fails here
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCopyOnWriteArraySetTest.java277 * removeAll removes all elements from the given collection
281 assertTrue(full.removeAll(Arrays.asList(one, two)));
283 assertFalse(full.removeAll(Arrays.asList(one, two)));
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/
H A DSubjectTest.java280 subject.getPrincipals().removeAll(null);

Completed in 3350 milliseconds

1234