Searched defs:contains (Results 51 - 75 of 437) sorted by relevance

1234567891011>>

/external/slf4j/slf4j-api/src/main/java/org/slf4j/
H A DMarker.java109 * @return Whether this marker contains the other marker.
111 public boolean contains(Marker other); method in interface:Marker
119 * @return Whether this marker contains the other marker.
121 public boolean contains(String name); method in interface:Marker
/external/v8/test/mjsunit/
H A Deval-stack-trace.js39 String.prototype.contains = function(pattern) {
56 // that contains the expected pattern for every frame.
62 assertTrue((frame[func_name])().contains(element));
/external/webrtc/webrtc/libjingle/xmpp/
H A Dxmppauth.cc39 static bool contains(const std::vector<std::string>& strings, function
49 contains(mechanisms, buzz::AUTH_MECHANISM_OAUTH2)) {
55 contains(mechanisms, buzz::AUTH_MECHANISM_GOOGLE_TOKEN)) {
61 contains(mechanisms, buzz::AUTH_MECHANISM_GOOGLE_COOKIE)) {
66 if (contains(mechanisms, buzz::AUTH_MECHANISM_PLAIN)) {
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntArrayList.java79 public boolean contains(int v) { method in class:IntArrayList
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DStringToIntTable.java127 * Tell if the table contains the given string.
147 * Tell if the table contains the given string. Ignore case.
169 * Tell if the table contains the given string.
175 public final boolean contains(String key) method in class:StringToIntTable
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStringVector.java35 /** @serial Array of strings this contains */
38 /** @serial Number of strings this contains */
126 * Tell if the table contains the given string.
132 public final boolean contains(String s) method in class:StringVector
148 * Tell if the table contains the given string. Ignore case.
170 * Tell if the table contains the given string.
/external/autotest/frontend/client/src/autotest/tko/
H A DHeaderFieldCollection.java30 if (contains(field)) {
50 assert orderedFields.contains(field);
59 public boolean contains(Object o) { method in class:HeaderFieldCollection
137 if (!contains(o)) {
/external/clang/include/clang/Tooling/Core/
H A DReplacement.h54 /// \brief Whether this range contains \p RHS or not.
55 bool contains(Range RHS) const { function in class:clang::tooling::Range
/external/deqp/framework/delibs/decpp/
H A DdeSTLUtil.hpp42 inline bool contains (const C& container, const typename C::key_type& item) function in namespace:de
49 inline bool contains (const I& begin, const I& end, const K& item) function in namespace:de
/external/emma/core/java12/com/vladium/util/
H A DIntObjectMap.java84 public boolean contains (final int key) method in class:IntObjectMap
H A DIntSet.java82 public boolean contains (final int key) method in class:IntSet
H A DObjectIntMap.java86 public boolean contains (final Object key) method in class:ObjectIntMap
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DLruCache.java84 public boolean contains(T key) { method in class:LruCache
/external/guava/guava/src/com/google/common/collect/
H A DAbstractRangeSet.java28 public boolean contains(C value) { method in class:AbstractRangeSet
H A DEmptyImmutableSet.java46 @Override public boolean contains(@Nullable Object target) { method in class:EmptyImmutableSet
H A DHashBasedTable.java117 @Override public boolean contains( method in class:HashBasedTable
119 return super.contains(rowKey, columnKey);
H A DImmutableEnumSet.java72 @Override public boolean contains(Object object) { method in class:ImmutableEnumSet
73 return delegate.contains(object);
H A DRangeSet.java53 * Determines whether any of this range set's member ranges contains {@code value}.
55 boolean contains(C value); method in interface:RangeSet
58 * Returns the unique range from this range set that {@linkplain Range#contains contains}
72 * {@code this.contains(value)} whenever {@code other.contains(value)}. Returns {@code true} if
81 * Returns {@code true} if this range set contains no ranges.
139 * operation, if {@code range.contains(c)}, {@code this.contains(c)} will return {@code false}.
150 * {@code this.contains(
[all...]
H A DRegularImmutableTable.java71 public boolean contains(@Nullable Object object) { method in class:RegularImmutableTable.CellSet
H A DSingletonImmutableList.java75 @Override public boolean contains(@Nullable Object object) { method in class:SingletonImmutableList
H A DSingletonImmutableSet.java65 @Override public boolean contains(Object target) { method in class:SingletonImmutableSet
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableList.java71 @Override public boolean contains(@Nullable Object object) { method in class:ForwardingImmutableList
72 return object != null && delegateList().contains(object);
H A DImmutableCollection.java45 public boolean contains(@Nullable Object object) { method in class:ImmutableCollection
46 return object != null && super.contains(object);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentHashMap.java133 public boolean contains(Object value) { method in class:ConcurrentHashMap
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalCollection.java70 @Override public boolean contains(Object object) { method in class:MinimalCollection
78 return Arrays.asList(contents).contains(object);

Completed in 6978 milliseconds

1234567891011>>