HomeSort by relevance Sort by last modified time
    Searched refs:removeAll (Results 26 - 50 of 450) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
SetMultimap.java 31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
59 Set<V> removeAll(@Nullable Object key);
SortedSetMultimap.java 36 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
72 SortedSet<V> removeAll(@Nullable Object key);
ForwardingMultimap.java 117 public Collection<V> removeAll(@Nullable Object key) {
118 return delegate().removeAll(key);
Multimap.java 37 * In contrast, {@link #replaceValues} and {@link #removeAll} return collections
162 Collection<V> removeAll(@Nullable Object key);
Multiset.java 413 * <p>This method refines {@link Collection#removeAll} to further specify that
418 boolean removeAll(Collection<?> c);
  /external/skia/src/utils/
SkCanvasStack.h 21 virtual void removeAll() SK_OVERRIDE;
  /libcore/luni/src/main/java/java/util/
AbstractSet.java 97 public boolean removeAll(Collection<?> collection) {
List.java 273 public boolean removeAll(Collection<?> collection);
  /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
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 268 public boolean removeAll(Collection<?> c) {
269 return al.removeAll(c);
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 73 // removeAll
74 assertTrue("CollectionTest - a) removeAll failed", col
75 .removeAll(myCollection));
76 assertTrue("CollectionTest - b) removeAll failed", !col
77 .removeAll(myCollection)); // should not change the colletion
79 assertTrue("CollectionTest - c) removeAll failed", !col
81 assertTrue("CollectionTest - d) removeAll failed", !col
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashCountedSet.h 71 void removeAll(iterator);
72 void removeAll(const ValueType&);
186 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(const ValueType& value)
188 removeAll(find(value));
192 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(iterator it)
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationSelectionSet.java 199 removeAll(Collections.singleton(id));
203 private void removeAll(Collection<Long> ids) {
342 batchConversationToCheck.removeAll(itemsToRemoveFromBatch);
354 batchConversationToCheck.removeAll(cursorConversationIds);
361 removeAll(itemsToRemoveFromBatch);
  /cts/tests/tests/security/src/android/security/cts/
CertificateTest.java 43 expectedCertificates.removeAll(deviceCertificates);
56 deviceCertificates.removeAll(expectedCertificates);
57 deviceCertificates.removeAll(oemCertificateWhitelist);
  /external/chromium_org/third_party/WebKit/Source/core/page/
DeviceController.cpp 80 m_listeners.removeAll(window);
81 m_lastEventListeners.removeAll(window);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryCollection.java 48 mDictionaries.removeAll(Collections.singleton(null));
55 mDictionaries.removeAll(Collections.singleton(null));
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
DeviceSelectorView.java 73 mm.removeAll();
77 tm.removeAll();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListRemoveAllTester.java 28 * 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/guava/guava-tests/test/com/google/common/collect/
SynchronizedMultimapTest.java 127 @Override public Collection<V> removeAll(@Nullable Object key) {
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);
MapsTransformValuesUnmodifiableIteratorTest.java 65 @Override public boolean removeAll(Collection<?> c) {
66 return delegate.keySet().removeAll(c);
82 @Override public boolean removeAll(Collection<?> c) {
83 return delegate.values().removeAll(c);
99 @Override public boolean removeAll(Collection<?> c) {
100 return delegate.entrySet().removeAll(c);
348 // GWT's HashMap.keySet().removeAll(null) doesn't throws NPE.
356 // GWT's HashMap.entrySet().removeAll(null) doesn't throws NPE.
  /external/srec/shared/include/
IntArrayList.h 63 ESR_ReturnCode(*removeAll)(struct IntArrayList_t* self);
  /external/srec/shared/src/
IntArrayList.c 42 return self->removeAll(self);
  /frameworks/base/core/java/android/gesture/
Learner.java 80 instances.removeAll(toDelete);
  /external/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 162 assertFalse(keys.removeAll(asList(null, 0, 15, 1500)));
182 assertFalse(keys.removeAll(asList(null, 0, 15, 1500)));
239 assertFalse(values.removeAll(asList(null, 0, 15, 1500)));
259 assertFalse(values.removeAll(asList(null, 0, 15, 1500)));
316 assertFalse(entrySet.removeAll(asList(null, entryOf(0, 0), entryOf(15, 15))));
336 assertFalse(entrySet.removeAll(asList(null, entryOf(1, 1), entryOf(15, 15))));
  /external/chromium_org/third_party/icu/source/common/
hash.h 83 void removeAll(void);
189 inline void Hashtable::removeAll(void) {

Completed in 678 milliseconds

12 3 4 5 6 7 8 91011>>