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

1234567891011>>

/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionRemoveAllTester.java33 * A generic JUnit test which tests {@code removeAll} operations on a
46 assertFalse("removeAll(emptyCollection) should return false",
47 collection.removeAll(MinimalCollection.of()));
53 assertFalse("removeAll(disjointCollection) should return false",
54 collection.removeAll(MinimalCollection.of(samples.e3)));
61 assertTrue("removeAll(intersectingCollection) should return true",
62 collection.removeAll(MinimalCollection.of(samples.e0)));
69 assertTrue("removeAll(intersectingCollection) should return true",
70 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3)));
75 * Trigger the other.size() >= this.size() case in AbstractSet.removeAll()
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRefDict.h47 void removeAll();
H A DSkRefDict.cpp22 this->removeAll();
80 void SkRefDict::removeAll() { function in class:SkRefDict
/external/skia/src/core/
H A DSkRefDict.h47 void removeAll();
H A DSkRefDict.cpp22 this->removeAll();
80 void SkRefDict::removeAll() { function in class:SkRefDict
/external/guava/guava/src/com/google/common/collect/
H A DForwardingListMultimap.java47 @Override public List<V> removeAll(@Nullable Object key) { method in class:ForwardingListMultimap
48 return delegate().removeAll(key);
H A DForwardingSetMultimap.java49 @Override public Set<V> removeAll(@Nullable Object key) { method in class:ForwardingSetMultimap
50 return delegate().removeAll(key);
H A DForwardingSortedSetMultimap.java48 @Override public SortedSet<V> removeAll(@Nullable Object key) { method in class:ForwardingSortedSetMultimap
49 return delegate().removeAll(key);
H A DAbstractListMultimap.java71 @Override public List<V> removeAll(@Nullable Object key) { method in class:AbstractListMultimap
72 return (List<V>) super.removeAll(key);
H A DAbstractSetMultimap.java80 @Override public Set<V> removeAll(@Nullable Object key) { method in class:AbstractSetMultimap
81 return (Set<V>) super.removeAll(key);
H A DAbstractSortedSetMultimap.java76 @Override public SortedSet<V> removeAll(@Nullable Object key) { method in class:AbstractSortedSetMultimap
77 return (SortedSet<V>) super.removeAll(key);
H A DForwardingCollection.java69 public boolean removeAll(Collection<?> collection) { method in class:ForwardingCollection
70 return delegate().removeAll(collection);
181 * A sensible definition of {@link #removeAll} in terms of {@link #iterator},
183 * #iterator}, you may wish to override {@link #removeAll} to forward to this
189 return Iterators.removeAll(iterator(), collection);
H A DListMultimap.java31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
58 List<V> removeAll(@Nullable Object key); method in interface:ListMultimap
H A DSetMultimap.java31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
59 Set<V> removeAll(@Nullable Object key); method in interface:SetMultimap
H A DSortedSetMultimap.java36 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
72 SortedSet<V> removeAll(@Nullable Object key); method in interface:SortedSetMultimap
/external/replicaisland/src/com/replica/replicaisland/
H A DBufferLibrary.java33 removeAll();
40 public void removeAll() { method in class:BufferLibrary
/external/chromium_org/third_party/skia/src/utils/
H A DSkCanvasStack.cpp14 this->removeAll();
44 void SkCanvasStack::removeAll() { function in class:SkCanvasStack
46 this->INHERITED::removeAll();
H A DSkCanvasStack.h21 virtual void removeAll() SK_OVERRIDE;
/external/skia/src/utils/
H A DSkCanvasStack.cpp14 this->removeAll();
44 void SkCanvasStack::removeAll() { function in class:SkCanvasStack
46 this->INHERITED::removeAll();
H A DSkCanvasStack.h21 virtual void removeAll() SK_OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DInjectedStyleSheets.cpp45 void InjectedStyleSheets::removeAll() function in class:blink::InjectedStyleSheets
H A DInjectedStyleSheets.h64 void removeAll();
/external/chromium_org/ui/webui/resources/js/
H A Devent_tracker.js78 removeAll: function() {
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java74 // removeAll
75 assertTrue("CollectionTest - a) removeAll failed", col
76 .removeAll(myCollection));
77 assertTrue("CollectionTest - b) removeAll failed", !col
78 .removeAll(myCollection)); // should not change the colletion
80 assertTrue("CollectionTest - c) removeAll failed", !col
82 assertTrue("CollectionTest - d) removeAll failed", !col
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DInsnList.java301 insns.removeAll(false);
354 insns.removeAll(false);
416 insns.removeAll(false);
478 insns.removeAll(false);
526 private void removeAll(final boolean mark) { method in class:InsnList
547 removeAll(check);

Completed in 376 milliseconds

1234567891011>>