Searched refs:removeAll (Results 26 - 50 of 225) sorted by relevance

123456789

/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/Source/WebCore/css/
H A DCSSValueList.h55 bool removeAll(CSSValue*);
H A DCSSValueList.cpp71 bool CSSValueList::removeAll(CSSValue* val) function in class:WebCore::CSSValueList
/external/guava/guava-tests/test/com/google/common/cache/
H A DEmptyCachesTest.java162 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/guava/guava-tests/test/com/google/common/collect/
H A DMapsTransformValuesUnmodifiableIteratorTest.java65 @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.
H A DArrayListMultimapTest.java52 * Confirm that removeAll() returns a List implementing RandomAccess.
58 assertTrue(multimap.removeAll("foo") instanceof RandomAccess);
59 assertTrue(multimap.removeAll("bar") instanceof RandomAccess);
H A DForwardingCollectionTest.java73 @Override public boolean removeAll(Collection<?> collection) { method in class:ForwardingCollectionTest.StandardImplForwardingCollection
186 forward.removeAll(EMPTY_COLLECTION);
187 assertEquals("[removeAll(Collection)]", getCalls());
H A DForwardingQueueTest.java73 @Override public boolean removeAll(Collection<?> collection) { method in class:ForwardingQueueTest.StandardImplForwardingQueue
211 forward.removeAll(Collections.singleton("asdf"));
212 assertEquals("[removeAll(Collection)]", getCalls());
H A DForwardingSetTest.java81 @Override public boolean removeAll(Collection<?> collection) { method in class:ForwardingSetTest.StandardImplForwardingSet
193 forward().removeAll(EMPTY_LIST);
194 assertEquals("[removeAll(Collection)]", getCalls());
H A DSynchronizedSetTest.java118 @Override public boolean removeAll(Collection<?> c) { method in class:SynchronizedSetTest.TestSet
120 return super.removeAll(c);
H A DForwardingMultimapTest.java99 forward.removeAll("key");
100 assertEquals("[removeAll(Object)]", getCalls());
H A DForwardingMultisetTest.java83 @Override public boolean removeAll(Collection<?> collection) { method in class:ForwardingMultisetTest.StandardImplForwardingMultiset
218 @Override public boolean removeAll(Collection<?> collection) {
249 @Override public boolean removeAll(Collection<?> collection) {
324 forward().removeAll(EMPTY_COLLECTION);
325 assertEquals("[removeAll(Collection)]", getCalls());
/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/jmonkeyengine/engine/src/core/com/jme3/app/state/
H A DAppStateManager.java216 initializing.removeAll(transfer);
235 terminating.removeAll(Arrays.asList(array));
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DRTree.h100 void removeAll();
147 void removeAll();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalCollection.java108 @Override public boolean removeAll(Collection<?> elementsToRemove) { method in class:MinimalCollection
/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);
/external/srec/shared/include/
H A DInt8ArrayList.h63 ESR_ReturnCode(*removeAll)(struct Int8ArrayList_t* self); member in struct:Int8ArrayList_t
/external/webkit/Source/WebCore/dom/
H A DDeviceMotionController.cpp94 m_listeners.removeAll(window);
H A DDeviceOrientationController.cpp96 m_listeners.removeAll(window);

Completed in 737 milliseconds

123456789