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

1234

/external/guava/src/com/google/common/collect/
H A DAbstractListMultimap.java55 @Override public List<V> removeAll(@Nullable Object key) { method in class:AbstractListMultimap
56 return (List<V>) super.removeAll(key);
H A DAbstractSetMultimap.java57 @Override public Set<V> removeAll(@Nullable Object key) { method in class:AbstractSetMultimap
58 return (Set<V>) super.removeAll(key);
H A DAbstractSortedSetMultimap.java54 @Override public SortedSet<V> removeAll(@Nullable Object key) { method in class:AbstractSortedSetMultimap
55 return (SortedSet<V>) super.removeAll(key);
H A DForwardingCollection.java48 public boolean removeAll(Collection<?> collection) { method in class:ForwardingCollection
49 return delegate().removeAll(collection);
H A DListMultimap.java31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
56 List<V> removeAll(@Nullable Object key); method in interface:ListMultimap
H A DSetMultimap.java31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
57 Set<V> removeAll(@Nullable Object key); method in interface:SetMultimap
H A DSortedSetMultimap.java36 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
68 SortedSet<V> removeAll(@Nullable Object key); method in interface:SortedSetMultimap
H A DForwardingMultimap.java100 public Collection<V> removeAll(@Nullable Object key) { method in class:ForwardingMultimap
101 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.java390 * <p>This method refines {@link Collection#removeAll} to further specify that
394 boolean removeAll(Collection<?> c); method in interface:Multiset
H A DLinkedHashMultimap.java42 * multimap. Similarly, {@code get}, {@code removeAll}, and {@code
211 linkedEntries.removeAll(createEntries(delegate()));
246 @Override public boolean removeAll(Collection<?> values) { method in class:LinkedHashMultimap.SetDecorator
247 boolean changed = delegate.removeAll(values);
249 linkedEntries.removeAll(createEntries(values));
H A DSynchronized.java180 public boolean removeAll(Collection<?> c) { method in class:Synchronized.SynchronizedCollection
182 return delegate().removeAll(c);
700 public Collection<V> removeAll(Object key) { method in class:Synchronized.SynchronizedMultimap
702 return delegate().removeAll(key); // copy not synchronized
804 @Override public List<V> removeAll(Object key) { method in class:Synchronized.SynchronizedListMultimap
806 return delegate().removeAll(key); // copy not synchronized
848 @Override public Set<V> removeAll(Object key) { method in class:Synchronized.SynchronizedSetMultimap
850 return delegate().removeAll(key); // copy not synchronized
899 @Override public SortedSet<V> removeAll(Object key) { method in class:Synchronized.SynchronizedSortedSetMultimap
901 return delegate().removeAll(ke
1060 @Override public boolean removeAll(Collection<?> c) { method in class:Synchronized.SynchronizedAsMapEntries
[all...]
/external/webkit/JavaScriptCore/wtf/
H A DHashCountedSet.h68 void removeAll(iterator);
69 void removeAll(const ValueType&);
174 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(const ValueType& value) function in class:WTF::HashCountedSet
176 removeAll(find(value));
180 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(iterator it) function in class:WTF::HashCountedSet
/external/srec/shared/include/
H A DIntArrayList.h63 ESR_ReturnCode(*removeAll)(struct IntArrayList_t* self); member in struct:IntArrayList_t
H A DInt8ArrayList.h63 ESR_ReturnCode(*removeAll)(struct Int8ArrayList_t* self); member in struct:Int8ArrayList_t
/external/srec/shared/src/
H A DIntArrayList.c42 return self->removeAll(self);
H A DHashMap.c57 return self->removeAll(self);
H A DInt8ArrayList.c53 return self->removeAll(self);
/external/webkit/WebCore/css/
H A DCSSValueList.h55 bool removeAll(CSSValue*);
/external/chromium/third_party/icu/source/common/
H A Dhash.h83 void removeAll(void);
189 inline void Hashtable::removeAll(void) { function in class:Hashtable
/external/icu4c/common/
H A Dhash.h83 void removeAll(void);
189 inline void Hashtable::removeAll(void) { function in class:Hashtable
/external/chromium/third_party/icu/source/i18n/
H A Dregexst.cpp196 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_CONTROL]);
197 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_L]);
198 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_V]);
199 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_T]);
/external/icu4c/i18n/
H A Dregexst.cpp197 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_CONTROL]);
198 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_L]);
199 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_V]);
200 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_T]);
/external/srec/portable/include/
H A DArrayList.h91 ESR_ReturnCode(*removeAll)(struct ArrayList_t* self); member in struct:ArrayList_t
/external/srec/portable/src/
H A DArrayList.c74 return self->removeAll(self);

Completed in 387 milliseconds

1234