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

123

/libcore/ojluni/src/main/java/java/net/
H A DCookieStore.java126 public boolean removeAll(); method in interface:CookieStore
H A DInMemoryCookieStore.java192 public boolean removeAll() { method in class:InMemoryCookieStore
/libcore/luni/src/test/java/libcore/java/util/
H A DOldAbstractSetTest.java92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
/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.java357 * @throws UnsupportedOperationException if the <tt>removeAll</tt> method
371 boolean removeAll(Collection<?> c); method in interface:Collection
H A DList.java343 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
355 boolean removeAll(Collection<?> c); method in interface:List
H A DRegularEnumSet.java241 public boolean removeAll(Collection<?> c) { method in class:RegularEnumSet
243 return super.removeAll(c);
H A DJumboEnumSet.java293 public boolean removeAll(Collection<?> c) { method in class:JumboEnumSet
295 return super.removeAll(c);
H A DAbstractCollection.java368 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/luni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArraySet.java322 public boolean removeAll(Collection<?> c) { method in class:CopyOnWriteArraySet
323 return al.removeAll(c);
H A DConcurrentSkipListSet.java50 * {@code removeAll}, {@code retainAll}, {@code containsAll},
305 public boolean removeAll(Collection<?> c) { method in class:ConcurrentSkipListSet
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DEnumSetTest.java1026 * java.util.EnumSet#removeAll(Collection)
1032 set.removeAll(null);
1042 set.removeAll(null);
1051 boolean result = set.removeAll(collection);
1056 result = set.removeAll(collection);
1060 result = set.removeAll(emptySet);
1064 result = set.removeAll(emptyFooSet);
1068 result = set.removeAll(emptyFooSet);
1073 result = set.removeAll(setWithSubclass);
1077 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")));
H A DVectorTest.java913 * java.util.Vector#removeAll(java.util.Collection)
917 // java.util.Vector.removeAll(java.util.Collection)
927 v.removeAll(s);
929 v.removeAll(l);
935 v.removeAll(s);
939 v.removeAll(l);
944 v.removeAll(null);
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DSamplingProfiler.java423 added.removeAll(o);
427 removed.removeAll(n);
/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.java316 public boolean removeAll(Collection<?> coll) {
317 return s.removeAll(coll);
/libcore/luni/src/test/java/libcore/java/net/
H A DAbstractCookiesTest.java549 assertTrue(cookieStore.removeAll());
557 assertTrue(cookieStore.removeAll());
560 assertFalse("Expected removeAll() to return false when the call doesn't mutate the store",
561 cookieStore.removeAll()); // RI6 fails this
812 public boolean removeAll() { method in class:AbstractCookiesTest.TestCookieStore
1122 assertTrue(cookieStore.removeAll());
1140 cookieStore.removeAll();
1159 cookieStore.removeAll();
1169 cookieStore.removeAll();
1192 assertFalse(cookieStore.removeAll());
1535 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/support/src/test/java/libcore/javax/net/ssl/
H A DSSLConfigurationAsserts.java245 elementsNotInContainer.removeAll(Arrays.asList(container));
/libcore/luni/src/test/java/libcore/java/security/
H A DProviderTest.java125 remainingAlgorithms.removeAll(toRemove);
257 TYPES_NOT_SUPPORTS_PARAMETER.removeAll(TYPES_SUPPORTS_PARAMETER);

Completed in 737 milliseconds

123