/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | CollectionRemoveAllTester.java | 47 collection.removeAll(MinimalCollection.of())); in testRemoveAll_emptyCollection() 54 collection.removeAll(MinimalCollection.of(samples.e3))); in testRemoveAll_nonePresent() 62 collection.removeAll(MinimalCollection.of(samples.e0))); in testRemoveAll_allPresent() 70 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3))); in testRemoveAll_somePresent() 81 collection.removeAll(MinimalCollection.of( in testRemoveAll_somePresentLargeCollectionToRemove() 92 collection.removeAll(MinimalCollection.of())); in testRemoveAll_unsupportedEmptyCollection() 103 collection.removeAll(MinimalCollection.of(samples.e3))); in testRemoveAll_unsupportedNonePresent() 113 collection.removeAll(MinimalCollection.of(samples.e0)); in testRemoveAll_unsupportedPresent() 133 collection.removeAll(null); in testRemoveAll_nullCollectionReferenceEmptySubject() 143 collection.removeAll(null); in testRemoveAll_nullCollectionReferenceNonEmptySubject() [all …]
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | RequestHeaders.java | 202 headers.removeAll("Transfer-Encoding"); in setChunked() 210 headers.removeAll("Content-Length"); in setContentLength() 218 headers.removeAll("User-Agent"); in setUserAgent() 226 headers.removeAll("Host"); in setHost() 234 headers.removeAll("Connection"); in setConnection() 242 headers.removeAll("Accept-Encoding"); in setAcceptEncoding() 250 headers.removeAll("Content-Type"); in setContentType() 258 headers.removeAll("If-Modified-Since"); in setIfModifiedSince() 267 headers.removeAll("If-None-Match"); in setIfNoneMatch()
|
/external/icu4c/i18n/ |
D | regexst.cpp | 199 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_CONTROL]); in RegexStaticSets() 200 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_L]); in RegexStaticSets() 201 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_V]); in RegexStaticSets() 202 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_T]); in RegexStaticSets()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | HashCountedSet.h | 68 void removeAll(iterator); 69 void removeAll(const ValueType&); 177 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(const ValueType& value) in removeAll() function 179 removeAll(find(value)); in removeAll() 183 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(iterator it) in removeAll() function
|
/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingListMultimap.java | 47 @Override public List<V> removeAll(@Nullable Object key) { in removeAll() method in ForwardingListMultimap 48 return delegate().removeAll(key); in removeAll()
|
D | ForwardingSetMultimap.java | 49 @Override public Set<V> removeAll(@Nullable Object key) { in removeAll() method in ForwardingSetMultimap 50 return delegate().removeAll(key); in removeAll()
|
D | ForwardingSortedSetMultimap.java | 48 @Override public SortedSet<V> removeAll(@Nullable Object key) { in removeAll() method in ForwardingSortedSetMultimap 49 return delegate().removeAll(key); in removeAll()
|
D | ForwardingCollection.java | 69 public boolean removeAll(Collection<?> collection) { in removeAll() method in ForwardingCollection 70 return delegate().removeAll(collection); in removeAll() 189 return Iterators.removeAll(iterator(), collection); in standardRemoveAll()
|
D | AbstractSortedSetMultimap.java | 76 @Override public SortedSet<V> removeAll(@Nullable Object key) { in removeAll() method in AbstractSortedSetMultimap 77 return (SortedSet<V>) super.removeAll(key); in removeAll()
|
D | AbstractListMultimap.java | 71 @Override public List<V> removeAll(@Nullable Object key) { in removeAll() method in AbstractListMultimap 72 return (List<V>) super.removeAll(key); in removeAll()
|
D | AbstractSetMultimap.java | 80 @Override public Set<V> removeAll(@Nullable Object key) { in removeAll() method in AbstractSetMultimap 81 return (Set<V>) super.removeAll(key); in removeAll()
|
D | Synchronized.java | 167 public boolean removeAll(Collection<?> c) { in removeAll() method in Synchronized.SynchronizedCollection 169 return delegate().removeAll(c); in removeAll() 604 public Collection<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedMultimap 606 return delegate().removeAll(key); // copy not synchronized in removeAll() 708 @Override public List<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedListMultimap 710 return delegate().removeAll(key); // copy not synchronized in removeAll() 747 @Override public Set<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedSetMultimap 749 return delegate().removeAll(key); // copy not synchronized in removeAll() 791 @Override public SortedSet<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedSortedSetMultimap 793 return delegate().removeAll(key); // copy not synchronized in removeAll() [all …]
|
D | MapConstraints.java | 558 @Override public boolean removeAll(Collection<?> c) { 610 @Override public boolean removeAll(Collection<?> c) { 695 @Override public boolean removeAll(Collection<?> c) { 713 @Override public List<V> removeAll(Object key) { 714 return (List<V>) super.removeAll(key); 734 @Override public Set<V> removeAll(Object key) { 735 return (Set<V>) super.removeAll(key); 752 @Override public SortedSet<V> removeAll(Object key) { 753 return (SortedSet<V>) super.removeAll(key);
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | BufferLibrary.java | 33 removeAll(); in reset() 40 public void removeAll() { in removeAll() method in BufferLibrary
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | EmptyCachesTest.java | 162 assertFalse(keys.removeAll(asList(null, 0, 15, 1500))); in testKeySet_empty_remove() 182 assertFalse(keys.removeAll(asList(null, 0, 15, 1500))); in testKeySet_remove() 239 assertFalse(values.removeAll(asList(null, 0, 15, 1500))); in testValues_empty_remove() 259 assertFalse(values.removeAll(asList(null, 0, 15, 1500))); in testValues_remove() 316 assertFalse(entrySet.removeAll(asList(null, entryOf(0, 0), entryOf(15, 15)))); in testEntrySet_empty_remove() 336 assertFalse(entrySet.removeAll(asList(null, entryOf(1, 1), entryOf(15, 15)))); in testEntrySet_remove()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
D | CookieStoreTest.java | 311 assertTrue(cookieStore.removeAll()); in test_remove_LURI_LHttpCookie() 325 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie() 344 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie() 354 cookieStore.removeAll(); in test_remove_LURI_LHttpCookie() 380 assertTrue(cookieStore.removeAll()); in test_removeAll() 389 assertTrue(cookieStore.removeAll()); in test_removeAll() 393 assertTrue(cookieStore.removeAll()); in test_removeAll()
|
/external/skia/src/core/ |
D | SkRefDict.cpp | 22 this->removeAll(); in ~SkRefDict() 79 void SkRefDict::removeAll() { in removeAll() function in SkRefDict
|
/external/skia/legacy/src/core/ |
D | SkRefDict.cpp | 22 this->removeAll(); in ~SkRefDict() 79 void SkRefDict::removeAll() { in removeAll() function in SkRefDict
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | SynchronizedMultimapTest.java | 127 @Override public Collection<V> removeAll(@Nullable Object key) { in removeAll() method in SynchronizedMultimapTest.TestMultimap 129 return super.removeAll(key); in removeAll() 176 ASSERT.that(multimap.removeAll("foo")).hasContentsInOrder(3, -1, 2, 4, 1); in testSynchronizedListMultimap() 189 ASSERT.that(multimap.removeAll("foo")).hasContentsInOrder(-1, 1, 2, 3, 4); in testSynchronizedSortedSetMultimap()
|
D | MapsTransformValuesUnmodifiableIteratorTest.java | 65 @Override public boolean removeAll(Collection<?> c) { in keySet() method in MapsTransformValuesUnmodifiableIteratorTest.UnmodifiableIteratorMap 66 return delegate.keySet().removeAll(c); in keySet() 82 @Override public boolean removeAll(Collection<?> c) { in values() method 83 return delegate.values().removeAll(c); in values() 99 @Override public boolean removeAll(Collection<?> c) { 100 return delegate.entrySet().removeAll(c);
|
D | AbstractMultisetTest.java | 276 assertTrue(ms.removeAll(asList("a", "c"))); in testRemoveAllOfOne() 283 assertFalse(ms.removeAll(asList("c", "d"))); in testRemoveAllOfDisjoint() 290 assertTrue(ms.removeAll(asList("a", "b"))); in testRemoveAllOfEverything() 335 assertFalse(ms.elementSet().removeAll(Collections.emptySet())); in testRemoveAllVacuousViaElementSet() 342 assertTrue(ms.elementSet().removeAll(asList("a", "c"))); in testRemoveAllOfOneViaElementSet() 349 assertFalse(ms.elementSet().removeAll(asList("c", "d"))); in testRemoveAllOfDisjointViaElementSet() 356 assertTrue(ms.elementSet().removeAll(asList("a", "b"))); in testRemoveAllOfEverythingViaElementSet()
|
D | ForwardingMultisetTest.java | 83 @Override public boolean removeAll(Collection<?> collection) { in removeAll() method in ForwardingMultisetTest.StandardImplForwardingMultiset 218 @Override public boolean removeAll(Collection<?> collection) { in suite() 249 @Override public boolean removeAll(Collection<?> collection) { in suite() 324 forward().removeAll(EMPTY_COLLECTION); in testRemoveAll_Collection()
|
/external/apache-harmony/support/src/test/java/tests/support/ |
D | Support_CollectionTest.java | 76 .removeAll(myCollection)); in runTest() 78 .removeAll(myCollection)); // should not change the colletion in runTest()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | Synchronized.java | 154 public boolean removeAll(Collection<?> c) { in removeAll() method in Synchronized.SynchronizedCollection 156 return delegate().removeAll(c); in removeAll() 591 public Collection<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedMultimap 593 return delegate().removeAll(key); // copy not synchronized in removeAll() 695 @Override public List<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedListMultimap 697 return delegate().removeAll(key); // copy not synchronized in removeAll() 734 @Override public Set<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedSetMultimap 736 return delegate().removeAll(key); // copy not synchronized in removeAll() 778 @Override public SortedSet<V> removeAll(Object key) { in removeAll() method in Synchronized.SynchronizedSortedSetMultimap 780 return delegate().removeAll(key); // copy not synchronized in removeAll() [all …]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | EnumSetTest.java | 1032 set.removeAll(null); in test_removeAll_LCollection() 1042 set.removeAll(null); in test_removeAll_LCollection() 1051 boolean result = set.removeAll(collection); in test_removeAll_LCollection() 1056 result = set.removeAll(collection); in test_removeAll_LCollection() 1060 result = set.removeAll(emptySet); in test_removeAll_LCollection() 1064 result = set.removeAll(emptyFooSet); in test_removeAll_LCollection() 1068 result = set.removeAll(emptyFooSet); in test_removeAll_LCollection() 1073 result = set.removeAll(setWithSubclass); in test_removeAll_LCollection() 1077 result = set.removeAll(setWithSubclass); in test_removeAll_LCollection() 1084 result = set.removeAll(anotherSet); in test_removeAll_LCollection() [all …]
|