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

1234567891011

/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-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 ASSERT.that(multimap().removeAll(sampleKeys().e3)).isEmpty();
50 ASSERT.that(multimap().removeAll(sampleKeys().e0))
60 multimap().removeAll(sampleKeys().e0);
74 ASSERT.that(multimap().removeAll(sampleKeys().e0))
84 ASSERT.that(multimap().removeAll(null)).has().exactly(getValueForNullKey()).inOrder();
91 ASSERT.that(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.cpp14 this->removeAll();
44 void SkCanvasStack::removeAll() { function in class:SkCanvasStack
46 this->INHERITED::removeAll();
H A DSkCanvasStack.h21 void removeAll() override;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSortedSetRelation.java48 NO_B = A_NOT_B, // A setDiff B, removeAll
50 NO_A = B_NOT_A, // B setDiff A, removeAll
57 REMOVEALL = NO_B, // A setDiff B, removeAll
59 B_REMOVEALL = NO_A; // B setDiff A, removeAll
134 * what is in Java for doing addAll, removeAll, retainAll, (complementAll).
154 a.removeAll(b);
163 temp.removeAll(a);
164 a.removeAll(b);
169 temp.removeAll(a);
/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/jetty/src/java/org/eclipse/jetty/util/
H A DConcurrentHashSet.java92 public boolean removeAll(Collection<?> c) method in class:ConcurrentHashSet
94 return _keys.removeAll(c);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DRelation.java183 public Set<V> removeAll(K key) { method in class:Relation
296 public boolean removeAll(Relation<K, V> toBeRemoved) { method in class:Relation
302 result |= removeAll(key, values);
311 public Set<V> removeAll(K... keys) { method in class:Relation
312 return removeAll(Arrays.asList(keys));
315 public boolean removeAll(K key, Iterable<V> toBeRemoved) { method in class:Relation
323 public Set<V> removeAll(Collection<K> toBeRemoved) { method in class:Relation
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedQueueTest.java87 public boolean removeAll(Collection<?> collection) { method in class:SynchronizedQueueTest.TestQueue
89 return delegate.removeAll(collection);
171 create().removeAll(ImmutableList.of("foo"));

Completed in 839 milliseconds

1234567891011