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

1 2 3 4 5 6 7 8 9

  /libcore/luni/src/main/java/java/net/
CookieStore.java 102 boolean removeAll();
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
AbstractSetTest.java 94 method = "removeAll",
124 as.removeAll(null);
132 as.removeAll(c);
140 as.removeAll(c);
  /libcore/luni/src/main/java/java/util/
Collection.java 245 public boolean removeAll(Collection<?> collection);
Set.java 152 public boolean removeAll(Collection<?> collection);
AbstractSet.java 98 public boolean removeAll(Collection<?> collection) {
List.java 273 public boolean removeAll(Collection<?> collection);
  /external/guava/src/com/google/common/collect/
AbstractListMultimap.java 55 @Override public List<V> removeAll(@Nullable Object key) {
56 return (List<V>) super.removeAll(key);
AbstractSetMultimap.java 57 @Override public Set<V> removeAll(@Nullable Object key) {
58 return (Set<V>) super.removeAll(key);
AbstractSortedSetMultimap.java 54 @Override public SortedSet<V> removeAll(@Nullable Object key) {
55 return (SortedSet<V>) super.removeAll(key);
ForwardingCollection.java 48 public boolean removeAll(Collection<?> collection) {
49 return delegate().removeAll(collection);
ListMultimap.java 31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
56 List<V> removeAll(@Nullable Object key);
SetMultimap.java 31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
57 Set<V> removeAll(@Nullable Object key);
SortedSetMultimap.java 36 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
68 SortedSet<V> removeAll(@Nullable Object key);
ForwardingMultimap.java 100 public Collection<V> removeAll(@Nullable Object key) {
101 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 390 * <p>This method refines {@link Collection#removeAll} to further specify that
394 boolean removeAll(Collection<?> c);
  /external/webkit/WebCore/css/
CSSValueList.h 55 bool removeAll(CSSValue*);
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 76 // removeAll
77 assertTrue("CollectionTest - a) removeAll failed", col
78 .removeAll(myCollection));
79 assertTrue("CollectionTest - b) removeAll failed", !col
80 .removeAll(myCollection)); // should not change the colletion
82 assertTrue("CollectionTest - c) removeAll failed", !col
84 assertTrue("CollectionTest - d) removeAll failed", !col
  /external/webkit/JavaScriptCore/wtf/
HashCountedSet.h 68 void removeAll(iterator);
69 void removeAll(const ValueType&);
174 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(const ValueType& value)
176 removeAll(find(value));
180 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(iterator it)
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 275 public boolean removeAll(Collection<?> c) {
276 return al.removeAll(c);
  /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/chromium/third_party/icu/source/common/
hash.h 83 void removeAll(void);
189 inline void Hashtable::removeAll(void) {
  /external/icu4c/common/
hash.h 83 void removeAll(void);
189 inline void Hashtable::removeAll(void) {

Completed in 654 milliseconds

1 2 3 4 5 6 7 8 9