Searched defs:contains (Results 101 - 125 of 437) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DImmutableCollection.java83 public boolean contains(@Nullable Object object) { method in class:ImmutableCollection
84 return object != null && super.contains(object);
187 * Returns {@code true} if this immutable collection's implementation contains references to
258 * @throws NullPointerException if {@code elements} is null or contains a
277 * @throws NullPointerException if {@code elements} is null or contains a
296 * @throws NullPointerException if {@code elements} is null or contains a
H A DMultiset.java51 * #elementSet} contains the distinct elements of the multiset "with duplicates
52 * collapsed", and {@link #entrySet} is similar but contains {@link Entry
133 * multiset. If the multiset contains fewer than this number of occurrences to
206 * the count of that element. This set contains exactly one entry for each
297 * {@code true} if the given object is also a multiset and contains equal
338 * Determines whether this multiset contains the specified element.
340 * <p>This method refines {@link Collection#contains} to further specify that
345 * @return {@code true} if this multiset contains at least one occurrence of
349 boolean contains(@Nullable Object element); method in interface:Multiset
352 * Returns {@code true} if this multiset contains a
[all...]
H A DTable.java64 * Returns {@code true} if the table contains a mapping with the specified
70 boolean contains(@Nullable Object rowKey, @Nullable Object columnKey); method in interface:Table
73 * Returns {@code true} if the table contains a mapping with the specified
81 * Returns {@code true} if the table contains a mapping with the specified
89 * Returns {@code true} if the table contains a mapping with the specified
105 /** Returns {@code true} if the table contains no mappings. */
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java28 * An implementation of {@link ContiguousSet} that contains one or more elements.
99 @Override public boolean contains(@Nullable Object object) { method in class:RegularContiguousSet
104 return range.contains((C) object);
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingCollectionTest.java61 @Override public boolean contains(Object object) { method in class:ForwardingCollectionTest.StandardImplForwardingCollection
161 forward.contains(null);
162 assertEquals("[contains(Object)]", getCalls());
H A DForwardingSetTest.java69 @Override public boolean contains(Object object) { method in class:ForwardingSetTest.StandardImplForwardingSet
168 forward().contains(null);
169 assertEquals("[contains(Object)]", getCalls());
H A DForwardingSortedSetTest.java68 @Override public boolean contains(Object object) { method in class:ForwardingSortedSetTest.StandardImplForwardingSortedSet
H A DSynchronizedQueueTest.java99 public boolean contains(Object object) { method in class:SynchronizedQueueTest.TestQueue
101 return delegate.contains(object);
164 create().contains("foo");
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DBMPSet.java17 * Helper class for frozen UnicodeSets, implements contains() and span() optimized for BMP code points.
22 * Supplementary characters: Call contains() on the parent set.
36 * trail=c{5..0} it is set.contains(c)==(table7FF[trail] bit lead)
38 * Bits for 0..7F (non-shortest forms) are set to the result of contains(FFFD) for faster validity checking at
47 * indicates if contains(c) for all code points in the 64-block. If the upper bit is 1, then the block is mixed
48 * and set.contains(c) must be called.
50 * Bits for 0..7FF (non-shortest forms) and D800..DFFF are set to the result of contains(FFFD) for faster
63 * The inversion list of the parent set, for the slower contains() implementation for mixed BMP blocks and for
101 public boolean contains(int c) { method in class:BMPSet
122 // behavior of UnicodeSet.contains(
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DRegion.java128 * contains the basic relationships such as which regions are known, what the numeric
435 /** Used to determine the macroregion that geographically contains this region.
437 * @return The region that geographically contains this region. Returns NULL if this region is
447 /** Used to determine the macroregion that geographically contains this region and that matches the given type.
449 * @return The region that geographically contains this region and matches the given type. May return NULL if
525 * @return Returns true if this region contains the supplied other region anywhere in the region hierarchy.
527 public boolean contains(Region other) { method in class:Region
531 if (containedRegions.contains(other)) {
535 if (cr.contains(other)) {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DSortedBag.java87 public boolean contains(Object o) { method in class:SortedBag
90 return set.contains(o);
115 if (!contains(it.next())) return false;
139 if (!c.contains(item)) stuffToRemove.add(item);
/external/icu/icu4c/source/common/
H A Dunisetspan.h72 // For fast UnicodeSet::contains(c).
73 inline UBool contains(UChar32 c) const;
149 UBool UnicodeSetStringSpan::contains(UChar32 c) const { function in class:UnicodeSetStringSpan
150 return spanSet.contains(c);
H A Duvectr32.h44 * coarser. The class contains <em>one static flag</em> that is set
112 UBool contains(int32_t elem) const;
147 * Returns true if this vector contains none of the elements
261 inline UBool UVector32::contains(int32_t obj) const { function in class:UVector32
/external/icu/icu4c/source/test/perf/unisetperf/draft/
H A Dbitset.cpp180 UBool contains(UChar32 c) const { function in class:BitSet
186 return restSet->contains(c);
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetICU.java130 public boolean contains(Charset cs){ method in class:CharsetICU
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DBMPSet.java16 * Helper class for frozen UnicodeSets, implements contains() and span() optimized for BMP code points.
21 * Supplementary characters: Call contains() on the parent set.
34 * trail=c{5..0} it is set.contains(c)==(table7FF[trail] bit lead)
36 * Bits for 0..7F (non-shortest forms) are set to the result of contains(FFFD) for faster validity checking at
45 * indicates if contains(c) for all code points in the 64-block. If the upper bit is 1, then the block is mixed
46 * and set.contains(c) must be called.
48 * Bits for 0..7FF (non-shortest forms) and D800..DFFF are set to the result of contains(FFFD) for faster
61 * The inversion list of the parent set, for the slower contains() implementation for mixed BMP blocks and for
99 public boolean contains(int c) { method in class:BMPSet
120 // behavior of UnicodeSet.contains(
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRegion.java136 * contains the basic relationships such as which regions are known, what the numeric
446 /** Used to determine the macroregion that geographically contains this region.
448 * @return The region that geographically contains this region. Returns NULL if this region is
459 /** Used to determine the macroregion that geographically contains this region and that matches the given type.
461 * @return The region that geographically contains this region and matches the given type. May return NULL if
543 * @return Returns true if this region contains the supplied other region anywhere in the region hierarchy.
547 public boolean contains(Region other) { method in class:Region
551 if (containedRegions.contains(other)) {
555 if (cr.contains(other)) {
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DSortedBag.java86 public boolean contains(Object o) { method in class:SortedBag
89 return set.contains(o);
114 if (!contains(it.next())) return false;
138 if (!c.contains(item)) stuffToRemove.add(item);
/external/jetty/src/java/org/eclipse/jetty/util/
H A DLazyList.java353 public static boolean contains(Object list,Object item) method in class:LazyList
359 return ((List<?>)list).contains(item);
/external/jetty/src/java/org/eclipse/jetty/util/component/
H A DAggregateLifeCycle.java137 * @return True if the aggregate contains the bean
139 public boolean contains(Object bean) method in class:AggregateLifeCycle
150 * @return True if the aggregate contains the bean and it is joined
184 if (contains(o))
/external/libchrome/base/containers/
H A Dscoped_ptr_hash_map.h125 inline bool contains(const Key& k) const { return data_.count(k) > 0; } function in class:base::ScopedPtrHashMap
/external/llvm/include/llvm/Analysis/
H A DInterval.h10 // This file contains the declaration of the Interval class, which
68 /// contains - Find out if a basic block is in this interval
69 inline bool contains(BasicBlock *BB) const { function in class:llvm::Interval
H A DTrace.h55 /// getModule - Return this Module that contains this trace's parent
69 /// contains - Returns true if this trace contains the given basic
72 bool contains(const BasicBlock *X) const { function in class:llvm::Trace
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsSafeSet.java62 public boolean contains(Object mock) { method in class:HashCodeAndEqualsSafeSet
63 return backingHashSet.contains(HashCodeAndEqualsMockWrapper.of(mock));
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnectionSpec.java151 Arrays.asList(sslSocket.getSupportedCipherSuites()).contains(fallbackScsv);
216 if (contains(b, toFind)) {
223 private static <T> boolean contains(T[] array, T value) { method in class:ConnectionSpec

Completed in 698 milliseconds

1234567891011>>