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

123456789

/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...]
H A DListRemoveAllTester.java28 * A generic JUnit test which tests removeAll operations on a list. Can't be
45 assertTrue("removeAll(intersectingCollection) should return true",
46 getList().removeAll(MinimalCollection.of(duplicate)));
47 assertFalse("after removeAll(e), a collection should not contain e even " +
/external/skia/include/core/
H A DSkRefDict.h47 void removeAll();
/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
H A DForwardingMultimap.java117 public Collection<V> removeAll(@Nullable Object key) { method in class:ForwardingMultimap
118 return delegate().removeAll(key);
H A DMultimap.java37 * In contrast, {@link #replaceValues} and {@link #removeAll} return collections
162 Collection<V> removeAll(@Nullable Object key); method in interface:Multimap
H A DMultiset.java413 * <p>This method refines {@link Collection#removeAll} to further specify that
418 boolean removeAll(Collection<?> c); method in interface:Multiset
/external/chromium/chrome/browser/ui/cocoa/
H A Dtable_model_array_controller.h22 // RemoveRows and RemoveAll as actions (remove: and removeAll:).
49 - (IBAction)removeAll:(id)sender;
/external/okhttp/src/main/java/libcore/net/http/
H A DRequestHeaders.java204 headers.removeAll("Transfer-Encoding");
212 headers.removeAll("Content-Length");
220 headers.removeAll("User-Agent");
228 headers.removeAll("Host");
236 headers.removeAll("Connection");
244 headers.removeAll("Accept-Encoding");
252 headers.removeAll("Content-Type");
260 headers.removeAll("If-Modified-Since");
269 headers.removeAll("If-None-Match");
/external/chromium/chrome/browser/resources/shared/js/
H A Devent_tracker.js79 removeAll: function() {
/external/replicaisland/src/com/replica/replicaisland/
H A DBufferLibrary.java33 removeAll();
40 public void removeAll() { method in class:BufferLibrary
/external/skia/src/core/
H A DSkRefDict.cpp22 this->removeAll();
79 void SkRefDict::removeAll() { function in class:SkRefDict
/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/webkit/Source/JavaScriptCore/wtf/
H A DHashCountedSet.h68 void removeAll(iterator);
69 void removeAll(const ValueType&);
177 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(const ValueType& value) function in class:WTF::HashCountedSet
179 removeAll(find(value));
183 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(iterator it) function in class:WTF::HashCountedSet
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedMultimapTest.java127 @Override public Collection<V> removeAll(@Nullable Object key) { method in class:SynchronizedMultimapTest.TestMultimap
129 return super.removeAll(key);
176 ASSERT.that(multimap.removeAll("foo")).hasContentsInOrder(3, -1, 2, 4, 1);
189 ASSERT.that(multimap.removeAll("foo")).hasContentsInOrder(-1, 1, 2, 3, 4);
/external/srec/shared/include/
H A DIntArrayList.h63 ESR_ReturnCode(*removeAll)(struct IntArrayList_t* self); member in struct:IntArrayList_t

Completed in 424 milliseconds

123456789