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

12

/libcore/luni/src/main/java/java/net/
H A DCookieStore.java102 boolean removeAll(); method in interface:CookieStore
H A DCookieStoreImpl.java138 public synchronized boolean removeAll() { method in class:CookieStoreImpl
/libcore/luni/src/test/java/libcore/java/util/
H A DOldAbstractSetTest.java92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
/libcore/luni/src/main/java/java/util/
H A DCollection.java245 public boolean removeAll(Collection<?> collection); method in interface:Collection
H A DSet.java152 public boolean removeAll(Collection<?> collection); method in interface:Set
H A DAbstractSet.java97 public boolean removeAll(Collection<?> collection) { method in class:AbstractSet
H A DList.java273 public boolean removeAll(Collection<?> collection); method in interface:List
H A DAbstractCollection.java273 public boolean removeAll(Collection<?> collection) { method in class:AbstractCollection
H A DMiniEnumSet.java165 public boolean removeAll(Collection<?> collection) { method in class:MiniEnumSet
185 return super.removeAll(collection);
H A DHugeEnumSet.java266 public boolean removeAll(Collection<?> collection) { method in class:HugeEnumSet
290 return super.removeAll(collection);
H A DVector.java739 public synchronized boolean removeAll(Collection<?> collection) { method in class:Vector
740 return super.removeAll(collection);
H A DHashtable.java926 public boolean removeAll(Collection<?> collection) { method in class:Hashtable.KeySet
928 return super.removeAll(collection);
1025 public boolean removeAll(Collection<?> collection) { method in class:Hashtable.EntrySet
1027 return super.removeAll(collection);
/libcore/luni/src/main/java/libcore/net/http/
H A DRequestHeaders.java204 headers.removeAll("Transfer-Encoding");
212 headers.removeAll("Content-Length");
220 headers.removeAll("User-Agent");
228 headers.removeAll("Host");
236 headers.removeAll("Connection");
244 headers.removeAll("Accept-Encoding");
252 headers.removeAll("Content-Type");
260 headers.removeAll("If-Modified-Since");
269 headers.removeAll("If-None-Match");
H A DRawHeaders.java165 public void removeAll(String fieldName) { method in class:RawHeaders
185 removeAll(fieldName);
H A DResponseHeaders.java187 headers.removeAll("Content-Encoding");
192 headers.removeAll("Content-Length");
/libcore/luni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArraySet.java268 public boolean removeAll(Collection<?> c) { method in class:CopyOnWriteArraySet
269 return al.removeAll(c);
H A DConcurrentSkipListSet.java38 * <tt>removeAll</tt>, <tt>retainAll</tt>, <tt>containsAll</tt>,
292 public boolean removeAll(Collection<?> c) { method in class:ConcurrentSkipListSet
/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/test/java/libcore/java/util/concurrent/
H A DCopyOnWriteArrayListTest.java93 list.removeAll(Arrays.asList());
96 list.removeAll(Arrays.asList("e"));
99 list.removeAll(Arrays.asList("b", "c"));
159 def.removeAll(Arrays.asList("c", "e", "h")); // the RI fails here
/libcore/luni/src/test/java/tests/api/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.java392 assertTrue("Remove does not success", set.removeAll(c));
396 assertTrue("Remove does not success", set.removeAll(c));
397 assertFalse("Should return false", set.removeAll(c));
650 assertTrue("Should return true", set.removeAll(c));
652 assertFalse("Should return false", set.removeAll(c));
1038 assertTrue("Should return true", collection.removeAll(c));
1040 assertFalse("Should return false", collection.removeAll(c));
H A DVectorTest.java822 * java.util.Vector#removeAll(java.util.Collection)
826 // java.util.Vector.removeAll(java.util.Collection)
836 v.removeAll(s);
838 v.removeAll(l);
844 v.removeAll(s);
848 v.removeAll(l);
853 v.removeAll(null);
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DSamplingProfiler.java423 added.removeAll(o);
427 removed.removeAll(n);
/libcore/luni/src/main/java/java/nio/
H A DSelectorImpl.java372 public boolean removeAll(Collection<?> c) { method in class:SelectorImpl.UnaddableSet
373 return set.removeAll(c);
/libcore/luni/src/test/java/libcore/java/net/
H A DCookiesTest.java463 assertTrue(cookieStore.removeAll());
471 assertTrue(cookieStore.removeAll());
474 assertFalse("Expected removeAll() to return false when the call doesn't mutate the store",
475 cookieStore.removeAll()); // RI6 fails this
606 public boolean removeAll() { method in class:CookiesTest.TestCookieStore

Completed in 498 milliseconds

12