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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackList.cpp248 bool TextTrackList::contains(TextTrack* track) const function in class:TextTrackList
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageArea.cpp127 bool StorageArea::contains(const String& key, ExceptionState& exceptionState, LocalFrame* frame) function in class:blink::StorageArea
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/
H A Dproto.js102 contains: function(item) { return true; }
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntRect.cpp57 bool IntRect::contains(const IntRect& other) const function in class:blink::IntRect
H A DRegion.cpp68 bool Region::contains(const Region& region) const function in class:blink::Region
70 if (!m_bounds.contains(region.m_bounds))
76 bool Region::contains(const IntPoint& point) const function in class:blink::Region
78 if (!m_bounds.contains(point))
593 if (isRect() && m_bounds.contains(region.m_bounds))
595 if (region.isRect() && region.m_bounds.contains(m_bounds)) {
601 if (!isRect() && contains(region))
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashCountedSet.h63 bool contains(const ValueType& value ) const { return m_impl.contains(value); } function in class:WTF::HashCountedSet
/external/chromium_org/third_party/icu/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/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
H A Dbitset.cpp179 UBool contains(UChar32 c) const { function in class:BitSet
185 return restSet->contains(c);
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayEvent.cpp60 bool SkDisplayEvent::contains(SkDisplayable* match) { function in class:SkDisplayEvent
62 if (fChildren[index] == match || fChildren[index]->contains(match))
68 SkDisplayable* SkDisplayEvent::contains(const SkString& match) { function in class:SkDisplayEvent
71 if (child->contains(match))
/external/chromium_org/third_party/skia/src/core/
H A DSkRRect.cpp237 bool SkRRect::contains(const SkRect& rect) const { function in class:SkRRect
238 if (!this->getBounds().contains(rect)) {
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java448 * @return whether the list contains the given value
450 public boolean contains(int value) { method in class:IntList
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DAlignedBox.h75 inline bool contains(const VectorType& p) const function in class:Eigen::AlignedBox
79 inline bool contains(const AlignedBox& b) const function in class:Eigen::AlignedBox
82 /** Extends \c *this such that it contains the point \a p and returns a reference to \c *this. */
86 /** Extends \c *this such that it contains the box \a b and returns a reference to \c *this. */
/external/emma/core/java12/com/vladium/util/
H A DIntIntMap.java84 public boolean contains (final int key) method in class:IntIntMap
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMultiset.java59 @Override public boolean contains(@Nullable Object element) { method in class:AbstractMultiset
H A DEmptyImmutableList.java82 @Override public boolean contains(Object target) { method in class:EmptyImmutableList
H A DEmptyImmutableSortedSet.java49 @Override public boolean contains(Object target) { method in class:EmptyImmutableSortedSet
H A DEmptyImmutableTable.java85 @Override public boolean contains(@Nullable Object rowKey, method in class:EmptyImmutableTable
H A DForwardingCollection.java79 public boolean contains(Object object) { method in class:ForwardingCollection
80 return delegate().contains(object);
124 * A sensible definition of {@link #contains} in terms of {@link #iterator}.
126 * #contains} to forward to this implementation.
131 return Iterators.contains(iterator(), object);
135 * A sensible definition of {@link #containsAll} in terms of {@link #contains}
136 * . If you override {@link #contains}, you may wish to override {@link
143 if (!contains(o)) {
H A DForwardingTable.java70 public boolean contains(Object rowKey, Object columnKey) { method in class:ForwardingTable
71 return delegate().contains(rowKey, columnKey);
H A DGeneralRange.java163 boolean contains(@Nullable T t) { method in class:GeneralRange
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
129 * multiset. If the multiset contains fewer than this number of occurrences to
202 * the count of that element. This set contains exactly one entry for each
293 * {@code true} if the given object is also a multiset and contains equal
334 * Determines whether this multiset contains the specified element.
336 * <p>This method refines {@link Collection#contains} to further specify that
341 * @return {@code true} if this multiset contains at least one occurrence of
345 boolean contains(@Nullable Object element); method in interface:Multiset
348 * Returns {@code true} if this multiset contains a
[all...]
H A DRange.java39 * {@code range.contains(a) && range.contains(c)} implies that {@code
40 * range.contains(b)}.
104 * invoking {@link #contains}.
199 * range. For example, on the range {@code [0..2)}, {@code contains(1)}
200 * returns {@code true}, while {@code contains(2)} returns {@code false}.
202 public boolean contains(C value) { method in class:Range
209 * Equivalent to {@link #contains}; provided only to satisfy the {@link
211 * invoke {@link #contains} directly instead.
214 return contains(inpu
[all...]
H A DRegularImmutableMap.java206 @Override public boolean contains(Object target) { method in class:RegularImmutableMap.EntrySet
237 @Override public boolean contains(Object target) { method in class:RegularImmutableMap.KeySet
274 @Override public boolean contains(Object target) { method in class:RegularImmutableMap.Values
H A DRegularImmutableSortedSet.java71 @Override public boolean contains(Object o) { method in class:RegularImmutableSortedSet

Completed in 624 milliseconds

1234567891011>>