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

12345

/external/skia/include/core/
H A DSkRefDict.h54 void removeAll();
/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/chromium/chrome/browser/resources/shared/js/
H A Devent_tracker.js79 removeAll: function() {
/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));
/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.cpp29 this->removeAll();
86 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/srec/shared/include/
H A DIntArrayList.h63 ESR_ReturnCode(*removeAll)(struct IntArrayList_t* self); member in struct:IntArrayList_t
/external/srec/shared/src/
H A DIntArrayList.c42 return self->removeAll(self);
/external/webkit/Source/WebCore/css/
H A DCSSValueList.h55 bool removeAll(CSSValue*);
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dmenu_button.js131 this.showingEvents_.removeAll();
/external/icu4c/common/
H A Dhash.h83 void removeAll(void);
189 inline void Hashtable::removeAll(void) { function in class:Hashtable
/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

Completed in 869 milliseconds

12345