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

1 2 3 4 5 6 7 8 91011>>

  /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);
SortedSetMultimap.java 37 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
77 SortedSet<V> removeAll(@Nullable Object key);
  /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/icu/android_icu4j/src/main/java/android/icu/impl/
CollectionSet.java 83 public boolean removeAll(Collection<?> c) {
84 return data.removeAll(c);
SortedSetRelation.java 52 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).
157 case REMOVEALL:
158 a.removeAll(b);
167 temp.removeAll(a);
168 a.removeAll(b)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CollectionSet.java 81 public boolean removeAll(Collection<?> c) {
82 return data.removeAll(c);
SortedSetRelation.java 50 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).
155 case REMOVEALL:
156 a.removeAll(b);
165 temp.removeAll(a);
166 a.removeAll(b)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
BufferLibrary.java 33 removeAll();
40 public void removeAll() {
  /external/skia/src/utils/
SkCanvasStack.cpp 13 this->removeAll();
44 void SkCanvasStack::removeAll() {
45 this->INHERITED::removeAll(); // call the baseclass *before* we actually delete the canvases
SkCanvasStack.h 27 void removeAll() override;
  /external/skqp/src/utils/
SkCanvasStack.cpp 13 this->removeAll();
44 void SkCanvasStack::removeAll() {
45 this->INHERITED::removeAll(); // call the baseclass *before* we actually delete the canvases
SkCanvasStack.h 27 void removeAll() override;
  /external/apache-harmony/support/src/test/java/tests/support/
Support_CollectionTest.java 74 // 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

Completed in 1041 milliseconds

1 2 3 4 5 6 7 8 91011>>