/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | CollectionRemoveAllTester.java | 51 collection.removeAll(MinimalCollection.of())); in testRemoveAll_emptyCollection() 58 collection.removeAll(MinimalCollection.of(samples.e3))); in testRemoveAll_nonePresent() 66 collection.removeAll(MinimalCollection.of(samples.e0))); in testRemoveAll_allPresent() 74 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3))); in testRemoveAll_somePresent() 84 assertTrue(collection.removeAll(MinimalCollection.of(samples.e0, samples.e3))); in testRemoveAllSomePresentConcurrentWithIteration() 99 collection.removeAll(MinimalCollection.of( in testRemoveAll_somePresentLargeCollectionToRemove() 110 collection.removeAll(MinimalCollection.of())); in testRemoveAll_unsupportedEmptyCollection() 121 collection.removeAll(MinimalCollection.of(samples.e3))); in testRemoveAll_unsupportedNonePresent() 131 collection.removeAll(MinimalCollection.of(samples.e0)); in testRemoveAll_unsupportedPresent() 151 collection.removeAll(null); in testRemoveAll_nullCollectionReferenceEmptySubject() [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | MultimapRemoveAllTester.java | 43 ASSERT.that(multimap().removeAll(sampleKeys().e3)).isEmpty(); in testRemoveAllAbsentKey() 50 ASSERT.that(multimap().removeAll(sampleKeys().e0)) in testRemoveAllPresentKey() 60 multimap().removeAll(sampleKeys().e0); in testRemoveAllPropagatesToGet() 74 ASSERT.that(multimap().removeAll(sampleKeys().e0)) in testRemoveAllMultipleValues() 84 ASSERT.that(multimap().removeAll(null)).has().exactly(getValueForNullKey()).inOrder(); in testRemoveAllNullKeyPresent() 91 ASSERT.that(multimap().removeAll(null)).isEmpty(); in testRemoveAllNullKeyAbsent()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 293 fALetterSet.removeAll(fDictionaryCjkSet); in RBBIWordMonkey() 306 fOtherSet.removeAll(fCRSet); in RBBIWordMonkey() 307 fOtherSet.removeAll(fLFSet); in RBBIWordMonkey() 308 fOtherSet.removeAll(fNewlineSet); in RBBIWordMonkey() 309 fOtherSet.removeAll(fALetterSet); in RBBIWordMonkey() 310 fOtherSet.removeAll(fSingle_QuoteSet); in RBBIWordMonkey() 311 fOtherSet.removeAll(fDouble_QuoteSet); in RBBIWordMonkey() 312 fOtherSet.removeAll(fKatakanaSet); in RBBIWordMonkey() 313 fOtherSet.removeAll(fHebrew_LetterSet); in RBBIWordMonkey() 314 fOtherSet.removeAll(fMidLetterSet); in RBBIWordMonkey() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | SortedSetRelation.java | 154 a.removeAll(b); in doOperation() 163 temp.removeAll(a); in doOperation() 164 a.removeAll(b); in doOperation() 169 temp.removeAll(a); in doOperation()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | Relation.java | 183 public Set<V> removeAll(K key) { in removeAll() method in Relation 296 public boolean removeAll(Relation<K, V> toBeRemoved) { in removeAll() method in Relation 302 result |= removeAll(key, values); in removeAll() 311 public Set<V> removeAll(K... keys) { in removeAll() method in Relation 312 return removeAll(Arrays.asList(keys)); in removeAll() 315 public boolean removeAll(K key, Iterable<V> toBeRemoved) { in removeAll() method in Relation 323 public Set<V> removeAll(Collection<K> toBeRemoved) { in removeAll() method in Relation
|
/external/icu/icu4c/source/i18n/ |
D | regexst.cpp | 195 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_CONTROL]); in RegexStaticSets() 196 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_L]); in RegexStaticSets() 197 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_V]); in RegexStaticSets() 198 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_T]); in RegexStaticSets()
|
/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingCollection.java | 68 public boolean removeAll(Collection<?> collection) { in removeAll() method in ForwardingCollection 69 return delegate().removeAll(collection); in removeAll() 183 return Iterators.removeAll(iterator(), collection); in standardRemoveAll()
|
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 | FilteredKeyListMultimap.java | 49 public List<V> removeAll(@Nullable Object key) { in removeAll() method in FilteredKeyListMultimap 50 return (List<V>) super.removeAll(key); in removeAll()
|
D | AbstractListMultimap.java | 76 @Override public List<V> removeAll(@Nullable Object key) { in removeAll() method in AbstractListMultimap 77 return (List<V>) super.removeAll(key); in removeAll()
|
D | FilteredEntrySetMultimap.java | 49 public Set<V> removeAll(Object key) { in removeAll() method in FilteredEntrySetMultimap 50 return (Set<V>) super.removeAll(key); in removeAll()
|
D | AbstractSortedSetMultimap.java | 89 @Override public SortedSet<V> removeAll(@Nullable Object key) { in removeAll() method in AbstractSortedSetMultimap 90 return (SortedSet<V>) super.removeAll(key); in removeAll()
|
D | FilteredKeySetMultimap.java | 51 public Set<V> removeAll(Object key) { in removeAll() method in FilteredKeySetMultimap 52 return (Set<V>) super.removeAll(key); in removeAll()
|
D | AbstractSetMultimap.java | 84 @Override public Set<V> removeAll(@Nullable Object key) { in removeAll() method in AbstractSetMultimap 85 return (Set<V>) super.removeAll(key); in removeAll()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | TestBoilerplate.java | 142 here.errln(new UnicodeSet(set1).removeAll(set2).toPattern(true)); in verifySetsIdentical() 144 here.errln(new UnicodeSet(set2).removeAll(set1).toPattern(true)); in verifySetsIdentical() 154 temp.removeAll(values2); in verifySetsIdentical() 158 temp.removeAll(values1); in verifySetsIdentical()
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
D | InsnList.java | 301 insns.removeAll(false); in add() 354 insns.removeAll(false); in insert() 416 insns.removeAll(false); in insert() 478 insns.removeAll(false); in insertBefore() 526 private void removeAll(final boolean mark) { in removeAll() method in InsnList 547 removeAll(check); in clear()
|
/external/skia/src/utils/ |
D | SkCanvasStack.cpp | 14 this->removeAll(); in ~SkCanvasStack() 44 void SkCanvasStack::removeAll() { in removeAll() function in SkCanvasStack 46 this->INHERITED::removeAll(); in removeAll()
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | EmptyCachesTest.java | 163 assertFalse(keys.removeAll(asList(null, 0, 15, 1500))); in testKeySet_empty_remove() 183 assertFalse(keys.removeAll(asList(null, 0, 15, 1500))); in testKeySet_remove() 240 assertFalse(values.removeAll(asList(null, 0, 15, 1500))); in testValues_empty_remove() 260 assertFalse(values.removeAll(asList(null, 0, 15, 1500))); in testValues_remove() 317 assertFalse(entrySet.removeAll(asList(null, entryOf(0, 0), entryOf(15, 15)))); in testEntrySet_empty_remove() 337 assertFalse(entrySet.removeAll(asList(null, entryOf(1, 1), entryOf(15, 15)))); in testEntrySet_remove()
|
/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/collect/ |
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 | SynchronizedQueueTest.java | 87 public boolean removeAll(Collection<?> collection) { in removeAll() method in SynchronizedQueueTest.TestQueue 89 return delegate.removeAll(collection); in removeAll() 171 create().removeAll(ImmutableList.of("foo")); in testHoldsLockOnAllOperations()
|
/external/skia/src/core/ |
D | SkRefDict.cpp | 22 this->removeAll(); in ~SkRefDict() 80 void SkRefDict::removeAll() { in removeAll() function in SkRefDict
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
D | Tokenizer.java | 48 "]").removeAll(QUOTERS).remove('$'); 61 syntax = ((UnicodeSet)syntax.clone()).removeAll(QUOTERS).removeAll(whiteSpace); in fixSets() 64 whiteSpace = ((UnicodeSet)whiteSpace.clone()).removeAll(QUOTERS); in fixSets()
|