Searched defs:containsAll (Results 1 - 25 of 97) sorted by relevance

1234

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java46 @Override public boolean containsAll(Collection<?> targets) { method in class:ForwardingImmutableCollection
47 return delegate.containsAll(targets);
H A DForwardingImmutableSet.java47 @Override public boolean containsAll(Collection<?> targets) { method in class:ForwardingImmutableSet
48 return delegate.containsAll(targets);
H A DForwardingImmutableList.java75 @Override public boolean containsAll(Collection<?> targets) { method in class:ForwardingImmutableList
76 return delegateList().containsAll(targets);
H A DRegularContiguousSet.java110 @Override public boolean containsAll(Collection<?> targets) { method in class:RegularContiguousSet
/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableSet.java50 @Override public boolean containsAll(Collection<?> targets) { method in class:EmptyImmutableSet
H A DImmutableEnumSet.java76 @Override public boolean containsAll(Collection<?> collection) { method in class:ImmutableEnumSet
77 return delegate.containsAll(collection);
H A DEmptyImmutableSortedMultiset.java53 public boolean containsAll(Collection<?> targets) { method in class:EmptyImmutableSortedMultiset
H A DEmptyImmutableSortedSet.java54 @Override public boolean containsAll(Collection<?> targets) { method in class:EmptyImmutableSortedSet
H A DForwardingCollection.java93 public boolean containsAll(Collection<?> collection) { method in class:ForwardingCollection
94 return delegate().containsAll(collection);
134 * A sensible definition of {@link #containsAll} in terms of {@link #contains}
136 * #containsAll} to forward to this implementation.
H A DMultiset.java355 * <p>This method refines {@link Collection#containsAll} to further specify
373 boolean containsAll(Collection<?> elements); method in interface:Multiset
H A DAbstractBiMap.java341 @Override public boolean containsAll(Collection<?> c) { method in class:AbstractBiMap.EntrySet
H A DImmutableMultiset.java268 public boolean containsAll(Collection<?> targets) { method in class:ImmutableMultiset
269 return elementSet().containsAll(targets);
H A DRegularContiguousSet.java129 @Override public boolean containsAll(Collection<?> targets) { method in class:RegularContiguousSet
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalCollection.java81 @Override public boolean containsAll(Collection<?> collection) { method in class:MinimalCollection
90 return super.containsAll(collection);
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedSetTest.java113 @Override public boolean containsAll(Collection<?> c) { method in class:SynchronizedSetTest.TestSet
115 return super.containsAll(c);
H A DForwardingCollectionTest.java65 @Override public boolean containsAll(Collection<?> collection) { method in class:ForwardingCollectionTest.StandardImplForwardingCollection
166 forward.containsAll(EMPTY_COLLECTION);
167 assertEquals("[containsAll(Collection)]", getCalls());
H A DForwardingSetTest.java73 @Override public boolean containsAll(Collection<?> collection) { method in class:ForwardingSetTest.StandardImplForwardingSet
173 forward().containsAll(EMPTY_LIST);
174 assertEquals("[containsAll(Collection)]", getCalls());
H A DForwardingSortedSetTest.java72 @Override public boolean containsAll(Collection<?> collection) { method in class:ForwardingSortedSetTest.StandardImplForwardingSortedSet
H A DSynchronizedQueueTest.java117 public boolean containsAll(Collection<?> collection) { method in class:SynchronizedQueueTest.TestQueue
119 return delegate.containsAll(collection);
165 create().containsAll(ImmutableList.of("foo"));
/external/jetty/src/java/org/eclipse/jetty/util/
H A DConcurrentHashSet.java56 public boolean containsAll(Collection<?> c) method in class:ConcurrentHashSet
58 return _keys.containsAll(c);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DSortedBag.java113 public boolean containsAll(Collection c) { method in class:SortedBag
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DSortedBag.java112 public boolean containsAll(Collection c) { method in class:SortedBag
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DBits.java290 public boolean containsAll (Bits other) { method in class:Bits
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsSafeSet.java119 public boolean containsAll(Collection<?> mocks) { method in class:HashCodeAndEqualsSafeSet
120 return backingHashSet.containsAll(asWrappedMocks(mocks));
/external/smali/util/src/main/java/org/jf/util/
H A DArraySortedSet.java101 public boolean containsAll(Collection<?> c) { method in class:ArraySortedSet
194 return this.containsAll(other);

Completed in 602 milliseconds

1234