Searched refs:removeAll (Results 51 - 75 of 225) sorted by relevance

123456789

/external/guava/guava/src/com/google/common/collect/
H A DSynchronized.java167 public boolean removeAll(Collection<?> c) { method in class:Synchronized.SynchronizedCollection
169 return delegate().removeAll(c);
604 public Collection<V> removeAll(Object key) { method in class:Synchronized.SynchronizedMultimap
606 return delegate().removeAll(key); // copy not synchronized
708 @Override public List<V> removeAll(Object key) { method in class:Synchronized.SynchronizedListMultimap
710 return delegate().removeAll(key); // copy not synchronized
747 @Override public Set<V> removeAll(Object key) { method in class:Synchronized.SynchronizedSetMultimap
749 return delegate().removeAll(key); // copy not synchronized
791 @Override public SortedSet<V> removeAll(Object key) { method in class:Synchronized.SynchronizedSortedSetMultimap
793 return delegate().removeAll(ke
898 @Override public boolean removeAll(Collection<?> c) { method in class:Synchronized.SynchronizedAsMapEntries
[all...]
H A DLinkedHashMultimap.java44 * multimap. Similarly, {@code get}, {@code removeAll}, and {@code
254 @Override public boolean removeAll(Collection<?> values) { method in class:LinkedHashMultimap.SetDecorator
255 boolean changed = delegate.removeAll(values);
257 linkedEntries.removeAll(createEntries(values));
H A DMapConstraints.java94 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
115 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
137 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
158 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
558 @Override public boolean removeAll(Collection<?> c) { method in class:MapConstraints.ConstrainedAsMapValues
610 @Override public boolean removeAll(Collection<?> c) { method in class:MapConstraints.ConstrainedEntries
695 @Override public boolean removeAll(Collection<?> c) { method in class:MapConstraints.ConstrainedAsMapEntries
713 @Override public List<V> removeAll(Object key) { method in class:MapConstraints.ConstrainedListMultimap
714 return (List<V>) super.removeAll(key);
734 @Override public Set<V> removeAll(Objec method in class:MapConstraints.ConstrainedSetMultimap
752 @Override public SortedSet<V> removeAll(Object key) { method in class:MapConstraints.ConstrainedSortedSetMultimap
[all...]
H A DLinkedListMultimap.java74 * Similarly, {@link #get}, {@link #removeAll}, and {@link #replaceValues}
630 public List<V> removeAll(@Nullable Object key) { method in class:LinkedListMultimap
665 @Override public boolean removeAll(Collection<?> c) {
666 return Iterators.removeAll(iterator(), c);
690 @Override public boolean removeAll(Collection<?> c) {
692 return super.removeAll(c);
767 @Override public boolean removeAll(Collection<?> c) { method in class:LinkedListMultimap.MultisetView
768 return Iterators.removeAll(iterator(), c);
1063 Collection<V> collection = removeAll(key);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedHashMultimap.java40 * multimap. Similarly, {@code get}, {@code removeAll}, and {@code
250 @Override public boolean removeAll(Collection<?> values) { method in class:LinkedHashMultimap.SetDecorator
251 boolean changed = delegate.removeAll(values);
253 linkedEntries.removeAll(createEntries(values));
H A DSynchronized.java154 public boolean removeAll(Collection<?> c) { method in class:Synchronized.SynchronizedCollection
156 return delegate().removeAll(c);
591 public Collection<V> removeAll(Object key) { method in class:Synchronized.SynchronizedMultimap
593 return delegate().removeAll(key); // copy not synchronized
695 @Override public List<V> removeAll(Object key) { method in class:Synchronized.SynchronizedListMultimap
697 return delegate().removeAll(key); // copy not synchronized
734 @Override public Set<V> removeAll(Object key) { method in class:Synchronized.SynchronizedSetMultimap
736 return delegate().removeAll(key); // copy not synchronized
778 @Override public SortedSet<V> removeAll(Object key) { method in class:Synchronized.SynchronizedSortedSetMultimap
780 return delegate().removeAll(ke
885 @Override public boolean removeAll(Collection<?> c) { method in class:Synchronized.SynchronizedAsMapEntries
[all...]
H A DImmutableCollection.java104 public final boolean removeAll(Collection<?> oldElements) { method in class:ImmutableCollection
H A DLinkedListMultimap.java70 * Similarly, {@link #get}, {@link #removeAll}, and {@link #replaceValues}
626 public List<V> removeAll(@Nullable Object key) { method in class:LinkedListMultimap
661 @Override public boolean removeAll(Collection<?> c) {
662 return Iterators.removeAll(iterator(), c);
686 @Override public boolean removeAll(Collection<?> c) {
688 return super.removeAll(c);
763 @Override public boolean removeAll(Collection<?> c) { method in class:LinkedListMultimap.MultisetView
764 return Iterators.removeAll(iterator(), c);
1059 Collection<V> collection = removeAll(key);
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetWritesTester.java186 "multiset.entrySet.removeAll(presentEntry) returned false",
187 getMultiset().entrySet().removeAll(
199 getMultiset().entrySet().removeAll(
209 getMultiset().entrySet().removeAll(null);
210 fail("multiset.entrySet.removeAll(null) didn't throw an exception");
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DRTree.cpp229 void ElementList::removeAll() function in class:RTree::ElementList
370 void Node::removeAll() function in class:RTree::Node
427 listA->removeAll();
428 listB->removeAll();
455 removeAll();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DCookieStoreTest.java311 assertTrue(cookieStore.removeAll());
325 cookieStore.removeAll();
344 cookieStore.removeAll();
354 cookieStore.removeAll();
380 assertTrue(cookieStore.removeAll());
389 assertTrue(cookieStore.removeAll());
393 assertTrue(cookieStore.removeAll());
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMultisetTest.java276 assertTrue(ms.removeAll(asList("a", "c")));
283 assertFalse(ms.removeAll(asList("c", "d")));
290 assertTrue(ms.removeAll(asList("a", "b")));
335 assertFalse(ms.elementSet().removeAll(Collections.emptySet()));
342 assertTrue(ms.elementSet().removeAll(asList("a", "c")));
349 assertFalse(ms.elementSet().removeAll(asList("c", "d")));
356 assertTrue(ms.elementSet().removeAll(asList("a", "b")));
H A DForwardingListTest.java77 @Override public boolean removeAll(Collection<?> collection) { method in class:ForwardingListTest.StandardImplForwardingList
263 forward.removeAll(EMPTY_LIST);
264 assertEquals("[removeAll(Collection)]", getCalls());
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DEnumSetTest.java1026 * @tests 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...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMapInterfaceTest.java652 // invalidated and have undefined behavior after entrySet.removeAll(entriesToRemove),
658 boolean didRemove = entrySet.removeAll(entriesToRemove);
663 // have undefined behavior after entrySet.removeAll(entriesToRemove),
667 entrySet.removeAll(entriesToRemove);
687 entrySet.removeAll(null);
694 entrySet.removeAll(null);
1304 assertTrue(keys.removeAll(Collections.singleton(key)));
1309 keys.removeAll(Collections.singleton(key));
1377 keySet.removeAll(null);
1384 keySet.removeAll(nul
[all...]
H A DSafeTreeSet.java159 @Override public boolean removeAll(Collection<?> c) { method in class:SafeTreeSet
160 return delegate.removeAll(c);
/external/apache-http/src/org/apache/http/impl/conn/
H A DIdleConnectionHandler.java105 public void removeAll() { method in class:IdleConnectionHandler
/external/jmonkeyengine/engine/src/test/jme3test/awt/
H A DAppHarness.java142 removeAll();
H A DTestApplet.java137 removeAll();
/external/replicaisland/src/com/replica/replicaisland/
H A DObjectManager.java118 public void removeAll() { method in class:ObjectManager
H A DTextureLibrary.java63 removeAll();
274 public void removeAll() { method in class:TextureLibrary
/external/skia/tests/
H A DRefDictTest.cpp53 dict.removeAll();
/external/srec/shared/include/
H A DHashMap.h87 ESR_ReturnCode(*removeAll)(struct HashMap_t* self); member in struct:HashMap_t
/external/icu4c/tools/ctestfw/
H A Ddatamap.cpp71 fData->removeAll();
83 fData->removeAll();
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSafeArrayList.java211 public boolean removeAll(Collection<?> c) { method in class:SafeArrayList
212 boolean result = getBuffer().removeAll(c);

Completed in 5574 milliseconds

123456789