HomeSort by relevance Sort by last modified time
    Searched refs:removeAll (Results 1 - 25 of 992) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkRefDict.h 47 void removeAll();
SkRefDict.cpp 22 this->removeAll();
80 void SkRefDict::removeAll() {
  /libcore/ojluni/src/main/java/java/net/
CookieStore.java 126 public boolean removeAll();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionRemoveAllTester.java 38 * 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(MinimalCollection.of(samples.e0, samples.e3)))
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingListMultimap.java 47 @Override public List<V> removeAll(@Nullable Object key) {
48 return delegate().removeAll(key);
ForwardingSetMultimap.java 49 @Override public Set<V> removeAll(@Nullable Object key) {
50 return delegate().removeAll(key);
ForwardingSortedSetMultimap.java 48 @Override public SortedSet<V> removeAll(@Nullable Object key) {
49 return delegate().removeAll(key);
AbstractListMultimap.java 76 @Override public List<V> removeAll(@Nullable Object key) {
77 return (List<V>) super.removeAll(key);
AbstractSetMultimap.java 84 @Override public Set<V> removeAll(@Nullable Object key) {
85 return (Set<V>) super.removeAll(key);
AbstractSortedSetMultimap.java 89 @Override public SortedSet<V> removeAll(@Nullable Object key) {
90 return (SortedSet<V>) super.removeAll(key);
FilteredEntrySetMultimap.java 49 public Set<V> removeAll(Object key) {
50 return (Set<V>) super.removeAll(key);
FilteredKeyListMultimap.java 49 public List<V> removeAll(@Nullable Object key) {
50 return (List<V>) super.removeAll(key);
FilteredKeySetMultimap.java 51 public Set<V> removeAll(Object key) {
52 return (Set<V>) super.removeAll(key);
ForwardingCollection.java 68 public boolean removeAll(Collection<?> collection) {
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);
ListMultimap.java 32 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
63 List<V> removeAll(@Nullable Object key);
SetMultimap.java 32 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
74 Set<V> removeAll(@Nullable Object key);
  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractSetTest.java 92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapRemoveAllTester.java 35 * 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/libgdx/gdx/src/com/badlogic/gdx/utils/
FlushablePool.java 58 obtained.removeAll(objects, true);
  /libcore/ojluni/src/main/java/java/util/
Set.java 331 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
343 boolean removeAll(Collection<?> c);
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduBody.java 65 public void removeAll() {
  /external/replicaisland/src/com/replica/replicaisland/
BufferLibrary.java 33 removeAll();
40 public void removeAll() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
PixelPerfectTreeView.java 48 mm.removeAll();
52 tm.removeAll();
PixelPerfectView.java 50 mm.removeAll();
56 tm.removeAll();
  /external/skia/src/utils/
SkCanvasStack.cpp 14 this->removeAll();
44 void SkCanvasStack::removeAll() {
46 this->INHERITED::removeAll();

Completed in 6353 milliseconds

1 2 3 4 5 6 7 8 91011>>