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

1234567891011>>

/external/skia/src/core/
H A DSkRefDict.h46 void removeAll();
H A DSkRefDict.cpp21 this->removeAll();
79 void SkRefDict::removeAll() { function in class:SkRefDict
/external/skqp/src/core/
H A DSkRefDict.h46 void removeAll();
H A DSkRefDict.cpp21 this->removeAll();
79 void SkRefDict::removeAll() { function in class:SkRefDict
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionRemoveAllTester.java38 * A generic JUnit test which tests {@code removeAll} operations on a
50 assertFalse("removeAll(emptyCollection) should return false",
51 collection.removeAll(MinimalCollection.of()));
57 assertFalse("removeAll(disjointCollection) should return false",
58 collection.removeAll(MinimalCollection.of(samples.e3)));
65 assertTrue("removeAll(intersectingCollection) should return true",
66 collection.removeAll(MinimalCollection.of(samples.e0)));
73 assertTrue("removeAll(intersectingCollection) should return true",
74 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3)));
84 assertTrue(collection.removeAll(MinimalCollectio
[all...]
/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.java76 @Override public List<V> removeAll(@Nullable Object key) { method in class:AbstractListMultimap
77 return (List<V>) super.removeAll(key);
H A DAbstractSetMultimap.java84 @Override public Set<V> removeAll(@Nullable Object key) { method in class:AbstractSetMultimap
85 return (Set<V>) super.removeAll(key);
H A DAbstractSortedSetMultimap.java89 @Override public SortedSet<V> removeAll(@Nullable Object key) { method in class:AbstractSortedSetMultimap
90 return (SortedSet<V>) super.removeAll(key);
H A DFilteredEntrySetMultimap.java49 public Set<V> removeAll(Object key) { method in class:FilteredEntrySetMultimap
50 return (Set<V>) super.removeAll(key);
H A DFilteredKeyListMultimap.java49 public List<V> removeAll(@Nullable Object key) { method in class:FilteredKeyListMultimap
50 return (List<V>) super.removeAll(key);
H A DFilteredKeySetMultimap.java51 public Set<V> removeAll(Object key) { method in class:FilteredKeySetMultimap
52 return (Set<V>) super.removeAll(key);
H A DForwardingCollection.java68 public boolean removeAll(Collection<?> collection) { method in class:ForwardingCollection
69 return delegate().removeAll(collection);
175 * A sensible definition of {@link #removeAll} in terms of {@link #iterator},
177 * #iterator}, you may wish to override {@link #removeAll} to forward to this
183 return Iterators.removeAll(iterator(), collection);
H A DListMultimap.java32 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
63 List<V> removeAll(@Nullable Object key); method in interface:ListMultimap
H A DSetMultimap.java32 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
74 Set<V> removeAll(@Nullable Object key); method in interface:SetMultimap
H A DSortedSetMultimap.java37 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
77 SortedSet<V> removeAll(@Nullable Object key); method in interface:SortedSetMultimap
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapRemoveAllTester.java35 * Tests for {@link Multimap#removeAll(Object)}.
43 assertThat(multimap().removeAll(sampleKeys().e3)).isEmpty();
50 assertThat(multimap().removeAll(sampleKeys().e0))
60 multimap().removeAll(sampleKeys().e0);
74 assertThat(multimap().removeAll(sampleKeys().e0))
84 assertThat(multimap().removeAll(null)).has().exactly(getValueForNullKey()).inOrder();
91 assertThat(multimap().removeAll(null)).isEmpty();
/external/replicaisland/src/com/replica/replicaisland/
H A DBufferLibrary.java33 removeAll();
40 public void removeAll() { method in class:BufferLibrary
/external/skia/src/utils/
H A DSkCanvasStack.cpp13 this->removeAll();
44 void SkCanvasStack::removeAll() { function in class:SkCanvasStack
45 this->INHERITED::removeAll(); // call the baseclass *before* we actually delete the canvases
H A DSkCanvasStack.h27 void removeAll() override;
/external/skqp/src/utils/
H A DSkCanvasStack.cpp13 this->removeAll();
44 void SkCanvasStack::removeAll() { function in class:SkCanvasStack
45 this->INHERITED::removeAll(); // call the baseclass *before* we actually delete the canvases
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DSortedSetRelation.java52 NO_B = A_NOT_B, // A setDiff B, removeAll
54 NO_A = B_NOT_A, // B setDiff A, removeAll
61 REMOVEALL = NO_B, // A setDiff B, removeAll
63 B_REMOVEALL = NO_A; // B setDiff A, removeAll
138 * what is in Java for doing addAll, removeAll, retainAll, (complementAll).
158 a.removeAll(b);
167 temp.removeAll(a);
168 a.removeAll(b);
173 temp.removeAll(a);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSortedSetRelation.java50 NO_B = A_NOT_B, // A setDiff B, removeAll
52 NO_A = B_NOT_A, // B setDiff A, removeAll
59 REMOVEALL = NO_B, // A setDiff B, removeAll
61 B_REMOVEALL = NO_A; // B setDiff A, removeAll
136 * what is in Java for doing addAll, removeAll, retainAll, (complementAll).
156 a.removeAll(b);
165 temp.removeAll(a);
166 a.removeAll(b);
171 temp.removeAll(a);

Completed in 465 milliseconds

1234567891011>>