Searched refs:removeAll (Results 101 - 125 of 225) sorted by relevance

123456789

/external/chromium/chrome/browser/resources/ntp4/
H A Dgrabber.js163 this.events_.removeAll();
H A Dtile_page.js118 this.eventTracker.removeAll();
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dgrabber.js163 this.events_.removeAll();
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultiset.java372 @Override public boolean removeAll(Collection<?> elementsToRemove) { method in class:AbstractMapBasedMultiset.MapBasedElementSet
373 return Iterators.removeAll(iterator(), elementsToRemove);
H A DMaps.java810 @Override public boolean removeAll(Collection<?> collection) { method in class:Maps.UnmodifiableEntries
1295 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1342 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1388 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1433 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1480 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1520 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1548 * Support {@code clear()}, {@code removeAll()}, and {@code retainAll()} when
1653 @Override public boolean removeAll(Collection<?> collection) { method in class:Maps.AbstractFilteredMap.Values
1693 * Support {@code clear()}, {@code removeAll()}, an
1882 @Override public boolean removeAll(Collection<?> collection) { method in class:Maps.FilteredEntryMap.KeySet
2147 public boolean removeAll(Collection<?> c) { method in class:Maps.KeySet
2183 @Override public boolean removeAll(Collection<?> c) { method in class:Maps.Values
2262 @Override public boolean removeAll(Collection<?> c) { method in class:Maps.EntrySet
[all...]
H A DStandardTable.java602 @Override public boolean removeAll(Collection<?> c) { method in class:StandardTable.Column.EntrySet
671 @Override public boolean removeAll(final Collection<?> c) { method in class:StandardTable.Column.KeySet
726 @Override public boolean removeAll(final Collection<?> c) { method in class:StandardTable.Column.Values
819 @Override public boolean removeAll(Collection<?> c) { method in class:StandardTable.ColumnKeySet
825 // map.keySet().removeAll(c) can throw a NPE when map is a TreeMap with
827 if (Iterators.removeAll(map.keySet().iterator(), c)) {
1091 @Override public boolean removeAll(Collection<?> c) { method in class:StandardTable.ColumnMap.ColumnMapEntrySet
1127 @Override public boolean removeAll(Collection<?> c) { method in class:StandardTable.ColumnMap.ColumnMapValues
H A DIterables.java136 * <p>This method calls {@link Collection#removeAll} if {@code iterable} is a
137 * collection, and {@link Iterators#removeAll} otherwise.
143 public static boolean removeAll( method in class:Iterables
146 ? ((Collection<?>) removeFrom).removeAll(checkNotNull(elementsToRemove))
147 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove);
H A DAbstractBiMap.java185 @Override public boolean removeAll(Collection<?> keysToRemove) { method in class:AbstractBiMap.KeySet
363 @Override public boolean removeAll(Collection<?> c) { method in class:AbstractBiMap.EntrySet
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractBiMap.java181 @Override public boolean removeAll(Collection<?> keysToRemove) { method in class:AbstractBiMap.KeySet
359 @Override public boolean removeAll(Collection<?> c) { method in class:AbstractBiMap.EntrySet
H A DAbstractMapBasedMultiset.java369 @Override public boolean removeAll(Collection<?> elementsToRemove) { method in class:AbstractMapBasedMultiset.MapBasedElementSet
370 return Iterators.removeAll(iterator(), elementsToRemove);
H A DMaps.java781 @Override public boolean removeAll(Collection<?> collection) { method in class:Maps.UnmodifiableEntries
1266 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1313 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1359 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1404 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1451 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1491 * <p>When methods such as {@code removeAll()} and {@code clear()} are called
1519 * Support {@code clear()}, {@code removeAll()}, and {@code retainAll()} when
1624 @Override public boolean removeAll(Collection<?> collection) { method in class:Maps.AbstractFilteredMap.Values
1664 * Support {@code clear()}, {@code removeAll()}, an
1853 @Override public boolean removeAll(Collection<?> collection) { method in class:Maps.FilteredEntryMap.KeySet
2118 public boolean removeAll(Collection<?> c) { method in class:Maps.KeySet
2154 @Override public boolean removeAll(Collection<?> c) { method in class:Maps.Values
2233 @Override public boolean removeAll(Collection<?> c) { method in class:Maps.EntrySet
[all...]
H A DIterables.java133 * <p>This method calls {@link Collection#removeAll} if {@code iterable} is a
134 * collection, and {@link Iterators#removeAll} otherwise.
140 public static boolean removeAll( method in class:Iterables
143 ? ((Collection<?>) removeFrom).removeAll(checkNotNull(elementsToRemove))
144 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove);
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DUnmodifiableCollectionTests.java153 collection.removeAll(siblingCollection);
154 fail("removeAll succeeded on unmodifiable collection");
363 // Test #removeAll()
365 multimap.removeAll(sampleKey);
366 fail("removeAll succeeded on unmodifiable multimap");
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderList.java613 * @see List#removeAll(java.util.Collection)
615 public boolean removeAll(java.util.Collection<?> collection) { method in class:SIPHeaderList
616 return this.hlist.removeAll(collection);
/external/okhttp/src/main/java/libcore/net/http/
H A DRawHeaders.java201 public void removeAll(String fieldName) { method in class:RawHeaders
221 removeAll(fieldName);
/external/skia/src/gpu/
H A DGrResourceCache.cpp53 this->removeAll();
292 void GrResourceCache::removeAll() { function in class:GrResourceCache
/external/skia/src/utils/
H A DSkNWayCanvas.cpp17 this->removeAll();
35 void SkNWayCanvas::removeAll() { function in class:SkNWayCanvas
/external/srec/shared/src/
H A DHashMapImpl.c50 impl->Interface.removeAll = &HashMap_RemoveAll;
285 if ((rc = self->removeAll(self)) != ESR_SUCCESS)
/external/icu4c/test/intltest/
H A Drbbitst.cpp2664 fOtherSet->removeAll(*fCRSet);
2665 fOtherSet->removeAll(*fLFSet);
2666 fOtherSet->removeAll(*fNewlineSet);
2667 fOtherSet->removeAll(*fKatakanaSet);
2668 fOtherSet->removeAll(*fALetterSet);
2669 fOtherSet->removeAll(*fMidLetterSet);
2670 fOtherSet->removeAll(*fMidNumSet);
2671 fOtherSet->removeAll(*fNumericSet);
2672 fOtherSet->removeAll(*fExtendNumLetSet);
2673 fOtherSet->removeAll(*fFormatSe
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DEnumMapTest.java389 assertTrue("Remove does not success", set.removeAll(c)); //$NON-NLS-1$
393 assertTrue("Remove does not success", set.removeAll(c)); //$NON-NLS-1$
394 assertFalse("Should return false", set.removeAll(c)); //$NON-NLS-1$
648 assertTrue("Should return true", set.removeAll(c)); //$NON-NLS-1$
650 assertFalse("Should return false", set.removeAll(c)); //$NON-NLS-1$
1037 assertTrue("Should return true", collection.removeAll(c)); //$NON-NLS-1$
1039 assertFalse("Should return false", collection.removeAll(c)); //$NON-NLS-1$
H A DIdentityHashMapTest.java196 set.removeAll(set);
283 set.removeAll(set);
H A DAbstractCollectionTest.java133 * @tests java.util.AbstractCollection#removeAll(java.util.Collection)
166 assertTrue(ac.removeAll(Arrays.asList("0", "1", "2")));
/external/icu4c/common/
H A Dcaniter.cpp307 subpermute.removeAll();
369 permutations.removeAll();
/external/icu4c/common/unicode/
H A Duniset.h1117 UnicodeSet& removeAll(const UnicodeString& s);
1281 virtual UnicodeSet& removeAll(const UnicodeSet& c);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 513 milliseconds

123456789