Searched defs:contains (Results 1 - 25 of 47) sorted by relevance

12

/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMStringList.java48 public boolean contains(String str); method in interface:DOMStringList
H A DNameList.java55 public boolean contains(String str); method in interface:NameList
/libcore/luni/src/main/java/java/nio/charset/
H A DCharsetICU.java30 public boolean contains(Charset cs) { method in class:CharsetICU
36 return NativeConverter.contains(this.name(), cs.name());
H A DCharset.java45 * all characters can necessarily be represented by a given charset. The method {@link #contains}
341 * Determines whether this charset is a superset of the given charset. A charset C1 contains
357 public abstract boolean contains(Charset charset); method in class:Charset
548 * Gets a string representation of this charset. Usually this contains the
/libcore/luni/src/main/java/java/util/
H A DAbstractCollection.java68 * if {@code collection} is {@code null}, or if it contains
108 * Tests whether this {@code Collection} contains the specified object. This
126 public boolean contains(Object object) { method in class:AbstractCollection
145 * Tests whether this {@code Collection} contains all objects contained in the
158 * if {@code collection} contains at least one {@code null}
167 if (!contains(it.next())) {
175 * Returns if this {@code Collection} contains no elements. This implementation
267 * if {@code collection} contains at least one {@code null}
277 if (collection.contains(it.next())) {
308 * if {@code collection} contains a
[all...]
H A DCollection.java104 * contains {@code null} elements and this {@code Collection} does
121 * Tests whether this {@code Collection} contains the specified object. Returns
137 public boolean contains(Object object); method in interface:Collection
140 * Tests whether this {@code Collection} contains all objects contained in the
153 * if {@code collection} contains at least one {@code null}
184 * Returns if this {@code Collection} contains no elements.
239 * if {@code collection} contains at least one
263 * if {@code collection} contains at least one
272 * Returns a count of how many objects this {@code Collection} contains.
274 * @return how many objects this {@code Collection} contains, o
[all...]
H A DSet.java30 * already contains the object.
78 public boolean contains(Object object); method in interface:Set
H A DHashSet.java137 public boolean contains(Object object) { method in class:HashSet
H A DDeque.java508 * Returns <tt>true</tt> if this deque contains the specified element.
509 * More formally, returns <tt>true</tt> if and only if this deque contains
514 * @return <tt>true</tt> if this deque contains the specified element
520 boolean contains(Object o); method in interface:Deque
H A DHugeEnumSet.java190 public boolean contains(Object object) { method in class:HugeEnumSet
H A DList.java121 * Tests whether this {@code List} contains the specified object.
128 public boolean contains(Object object); method in interface:List
131 * Tests whether this {@code List} contains all objects contained in the
186 * Returns whether this {@code List} contains no elements.
H A DMiniEnumSet.java140 public boolean contains(Object object) { method in class:MiniEnumSet
H A DTreeSet.java194 public boolean contains(Object object) { method in class:TreeSet
405 * contains elements greater or equal to the start element but less than the
430 * contains elements less than the end element. The returned SortedSet is
451 * contains elements greater or equal to the start element. The returned
H A DArrayDeque.java24 * removeLastOccurrence}, {@link #contains contains}, {@link #iterator
555 * Returns <tt>true</tt> if this deque contains no elements.
557 * @return <tt>true</tt> if this deque contains no elements
662 * Returns <tt>true</tt> if this deque contains the specified element.
663 * More formally, returns <tt>true</tt> if and only if this deque contains
667 * @return <tt>true</tt> if this deque contains the specified element
669 public boolean contains(Object o) { method in class:ArrayDeque
H A DArrayList.java334 @Override public boolean contains(Object object) { method in class:ArrayList
H A DArrays.java24 * {@code Arrays} contains static methods which operate on arrays.
44 public boolean contains(Object object) { method in class:Arrays.ArrayList
1231 * array contains other arrays as its elements, the hash code is based on
1233 * method on an array that contains itself as an element, either directly or
1269 * the array contains other arrays as its elements, the hash code is based
1271 * this method on an array that contains itself as an element, either
2313 * {@code Object[]} passed, such that if the array contains other arrays,
2318 * contains a reference to the original array, then it will be represented
H A DEnumMap.java206 public boolean contains(Object object) { method in class:EnumMap.EnumMapKeySet
224 if (contains(object)) {
251 public boolean contains(Object object) { method in class:EnumMap.EnumMapValueCollection
325 public boolean contains(Object object) { method in class:EnumMap.EnumMapEntrySet
354 if (contains(object)) {
485 * Returns whether this {@code EnumMap} contains the specified key.
489 * @return {@code true} if this {@code EnumMap} contains the specified key,
502 * Returns whether this {@code EnumMap} contains the specified value.
506 * @return {@code true} if this {@code EnumMap} contains the specified value,
H A DVector.java281 public boolean contains(Object object) { method in class:Vector
379 * equal. The object must be a List which contains the same objects in the
517 * @see #contains
539 * @see #contains
634 * @see #contains
656 * @see #contains
736 * @see #contains(Object)
/libcore/luni/src/main/java/java/util/concurrent/
H A DBlockingQueue.java268 * that <tt>o.equals(e)</tt>, if this queue contains one or more such
284 * Returns <tt>true</tt> if this queue contains the specified element.
285 * More formally, returns <tt>true</tt> if and only if this queue contains
289 * @return <tt>true</tt> if this queue contains the specified element
296 public boolean contains(Object o); method in interface:BlockingQueue
H A DCopyOnWriteArraySet.java95 * Returns <tt>true</tt> if this set contains no elements.
97 * @return <tt>true</tt> if this set contains no elements
104 * Returns <tt>true</tt> if this set contains the specified element.
106 * contains an element <tt>e</tt> such that
110 * @return <tt>true</tt> if this set contains the specified element
112 public boolean contains(Object o) { method in class:CopyOnWriteArraySet
113 return al.contains(o);
193 * if this set contains such an element. Returns <tt>true</tt> if
208 * the set contains no element <tt>e2</tt> such that
210 * If this set already contains th
[all...]
H A DBlockingDeque.java577 * Returns <tt>true</tt> if this deque contains the specified element.
578 * More formally, returns <tt>true</tt> if and only if this deque contains
582 * @return <tt>true</tt> if this deque contains the specified element
589 public boolean contains(Object o); method in interface:BlockingDeque
/libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
H A DClientSessionContextTest.java85 SSLSession[] contains,
87 assertEquals(contains.length, context.size());
89 for (SSLSession s : contains) {
84 assertSessionContextContents(ClientSessionContext context, SSLSession[] contains, SSLSession[] exludes) argument
/libcore/luni/src/main/java/libcore/icu/
H A DNativeConverter.java37 public static native boolean contains(String converterName1, String converterName2); method in class:NativeConverter
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
H A DCache.java34 * and provides the means to determine whether it contains the object built on
117 // So this array contains ordered <hash to index> correspondences.
160 * similar encoding or not (by means of <code>contains(long)</code> method),
190 public boolean contains(long prefix_hash) { method in class:Cache
206 * the method <code>contains(long)</code> for the hash code returned true.
/libcore/luni/src/main/java/java/nio/
H A DSelectorImpl.java269 boolean wasSelected = mutableSelectedKeys.contains(key);
352 public boolean contains(Object object) { method in class:SelectorImpl.UnaddableSet
353 return set.contains(object);

Completed in 2051 milliseconds

12