Searched defs:contains (Results 301 - 325 of 381) sorted by relevance

<<111213141516

/openjdk7/jdk/src/share/classes/java/util/
H A DVector.java30 * objects. Like an array, it contains components that can be
354 * Returns {@code true} if this vector contains the specified element.
356 * contains at least one element {@code e} such that
360 * @return {@code true} if this vector contains the specified element
362 public boolean contains(Object o) { method in class:Vector
852 * Returns true if this Vector contains all of the elements in the
857 * @return true if this Vector contains all of the elements in the
898 * @throws NullPointerException if this vector contains one or more null
921 * @throws NullPointerException if this vector contains one or more null
H A DHashMap.java78 * associated with a key that an instance already contains is not a
393 * Returns <tt>true</tt> if this map contains no key-value mappings.
395 * @return <tt>true</tt> if this map contains no key-value mappings
403 * or {@code null} if this map contains no mapping for the key.
405 * <p>More formally, if this map contains a mapping from a key
411 * indicate that the map contains no mapping for the key; it's also
445 * Returns <tt>true</tt> if this map contains a mapping for the
449 * @return <tt>true</tt> if this map contains a mapping for the specified
458 * HashMap. Returns null if the HashMap contains no mapping
666 * in the HashMap. Returns null if the HashMap contains n
1011 public boolean contains(Object o) { method in class:HashMap.KeySet
1047 public boolean contains(Object o) { method in class:HashMap.Values
1084 public boolean contains(Object o) { method in class:HashMap.EntrySet
[all...]
H A DWeakHashMap.java436 * Returns <tt>true</tt> if this map contains no key-value mappings.
447 * or {@code null} if this map contains no mapping for the key.
449 * <p>More formally, if this map contains a mapping from a key
455 * indicate that the map contains no mapping for the key; it's also
477 * Returns <tt>true</tt> if this map contains a mapping for the
490 * Returns null if the map contains no mapping for this key.
646 * More formally, if this map contains a mapping from key <tt>k</tt> to
956 public boolean contains(Object o) { method in class:WeakHashMap.KeySet
1001 public boolean contains(Object o) { method in class:WeakHashMap.Values
1034 public boolean contains(Objec method in class:WeakHashMap.EntrySet
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArrayList.java147 * Returns <tt>true</tt> if this list contains no elements.
149 * @return <tt>true</tt> if this list contains no elements
206 * Returns <tt>true</tt> if this list contains the specified element.
207 * More formally, returns <tt>true</tt> if and only if this list contains
212 * @return <tt>true</tt> if this list contains the specified element
214 public boolean contains(Object o) { method in class:CopyOnWriteArrayList
607 * Returns <tt>true</tt> if this list contains all of the elements of the
611 * @return <tt>true</tt> if this list contains all of the elements of the
614 * @see #contains(Object)
636 * @throws NullPointerException if this list contains
[all...]
H A DLinkedBlockingDeque.java58 * #removeLastOccurrence removeLastOccurrence}, {@link #contains
59 * contains}, {@link #iterator iterator.remove()}, and the bulk
812 * Returns {@code true} if this deque contains the specified element.
813 * More formally, returns {@code true} if and only if this deque contains
817 * @return {@code true} if this deque contains the specified element
819 public boolean contains(Object o) { method in class:LinkedBlockingDeque
H A DConcurrentHashMap.java888 * Returns <tt>true</tt> if this map contains no key-value mappings.
890 * @return <tt>true</tt> if this map contains no key-value mappings
929 * map contains more than <tt>Integer.MAX_VALUE</tt> elements, returns
976 * or {@code null} if this map contains no mapping for the key.
978 * <p>More formally, if this map contains a mapping from a key
1103 public boolean contains(Object value) { method in class:ConcurrentHashMap
1436 public boolean contains(Object o) { method in class:ConcurrentHashMap.KeySet
1457 public boolean contains(Object o) { method in class:ConcurrentHashMap.Values
1469 public boolean contains(Object o) { method in class:ConcurrentHashMap.EntrySet
H A DConcurrentLinkedDeque.java114 * A node contains the expected E ("item") and links to predecessor
119 * A node p is considered "live" if it contains a non-null item
1077 * Returns {@code true} if this deque contains at least one
1081 * @return {@code true} if this deque contains the specified element
1083 public boolean contains(Object o) { method in class:ConcurrentLinkedDeque
1094 * Returns {@code true} if this collection contains no elements.
1096 * @return {@code true} if this collection contains no elements
1104 * contains more than {@code Integer.MAX_VALUE} elements, it
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2Region.java107 public boolean contains(int generator) { method in class:SF2Region
135 if (!contains(generator))
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyParser.java137 * @exception ParsingException if the policy configuration contains
676 public boolean contains(PermissionEntry pe) method in class:PolicyParser.GrantEntry
678 return permissionEntries.contains(pe);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/
H A Dhat.js612 * Returns an array that contains objects referred from the
840 * Returns an array that contains objects referred from the
870 * Returns an array that contains objects referred from the
1082 * @return array that contains values of enumeration/iterator/object
1104 * Returns whether the given array/iterator/enumeration contains
1118 function contains(array, code) { function
1211 * filter function returns an array/enumeration that contains
1218 * @return array/enumeration that contains the filtered elements
1277 * @return array/enumeration that contains mapped values
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileSystemModel.java201 // SAK: Part of fix for 3168263. The fileCache contains
204 public boolean contains(final File o) { method in class:AquaFileSystemModel
207 return fileCache.contains(new SortableFile(o));
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessibility.java188 public static boolean contains(final AccessibleContext ac, final AccessibleState as, final Component c) { method in class:CAccessibility
195 return ass.contains(as);
546 ret[4] = (aStateSet.contains(AccessibleState.HORIZONTAL) || aStateSet.contains(AccessibleState.VERTICAL));
628 if (role != null && ignoredRoles.contains(roleKey(role))) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.cpp537 bool JNIHandleBlock::contains(jobject handle) const { function in class:JNIHandleBlock
544 if (current->contains(handle)) {
571 if (current->contains(handle)) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.hpp41 /* the the GrowableArray does not outlive the HandleMark that contains */
215 bool missed = !contains(elem);
270 bool contains(const E& elem) const { function in class:GrowableArray
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DQNameMap.java131 * or <tt>null</tt> if the map contains no mapping for this key.
136 * <tt>null</tt> if the map contains no mapping for this set of keys.
277 * This method is useful to obtain the value from a map that only contains one element.
448 public boolean contains(Object o) { method in class:QNameMap.EntrySet
/openjdk7/jdk/test/tools/launcher/
H A DTestHelper.java80 System.getProperty("os.name", "unknown").contains("OS X");
571 boolean contains(String str) { method in class:TestHelper.TestResult
573 if (x.contains(str)) {
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHelloExtensions.java37 * This file contains all the classes relevant to TLS Extensions for the
480 boolean contains(int index) { method in class:SupportedEllipticCurvesExtension
552 return DEFAULT.contains(index);
686 * "renegotiation_info" (with extension type 0xff01), which contains a
689 * field of this extension contains a "RenegotiationInfo" structure:
770 * extension contains a "supported_signature_algorithms" value.
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DGB18030.java74 public boolean contains(Charset cs) { method in class:GB18030
/openjdk7/jdk/src/solaris/classes/java/lang/
H A DProcessEnvironment.java352 public boolean contains(Object o) { return s.contains(vvEntry(o)); } method in class:ProcessEnvironment.StringEntrySet
377 public boolean contains(Object o) { method in class:ProcessEnvironment.StringValues
378 return c.contains(Value.valueOfQueryOnly(o));
404 public boolean contains(Object o) { method in class:ProcessEnvironment.StringKeySet
405 return s.contains(Variable.valueOfQueryOnly(o));
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM933_OLD.java50 public boolean contains(Charset cs) { method in class:IBM933_OLD
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java128 * Create a NodeSet which contains the given Node.
1291 * Tell if the table contains the given node.
1297 public boolean contains(Node s) method in class:NodeSet
H A DNodeSetDTM.java181 * Create a NodeSetDTM which contains the given Node.
1052 * Tell if the table contains the given node.
1058 public boolean contains(int s) method in class:NodeSetDTM
1063 return super.contains(s);
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DPath2D.java1922 * The method will return a Shape that contains no less precision
1960 * {@link Shape#contains(double, double)} method.
1969 public static boolean contains(PathIterator pi, double x, double y) { method in class:Path2D
1993 * {@link Shape#contains(Point2D)} method.
2001 public static boolean contains(PathIterator pi, Point2D p) { method in class:Path2D
2002 return contains(pi, p.getX(), p.getY());
2009 public final boolean contains(double x, double y) { method in class:Path2D
2033 public final boolean contains(Point2D p) { method in class:Path2D
2034 return contains(p.getX(), p.getY());
2043 * {@link Shape#contains(doubl
2068 public static boolean contains(PathIterator pi, method in class:Path2D
2119 public static boolean contains(PathIterator pi, Rectangle2D r) { method in class:Path2D
2142 public final boolean contains(double x, double y, double w, double h) { method in class:Path2D
2182 public final boolean contains(Rectangle2D r) { method in class:Path2D
[all...]
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextSupport.java219 * empty when it contains zero
235 public boolean contains(Object o) { method in class:BeanContextSupport
573 if(!contains(i.next()))
628 if (bcmListeners.contains(bcml))
646 if (!bcmListeners.contains(bcml))
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java172 * Allocates a new {@code String} that contains characters from a subarray
207 * Allocates a new {@code String} that contains characters from a subarray
560 * Allocates a new string that contains the sequence of characters
575 * Allocates a new string that contains the sequence of characters
2067 * Returns true if and only if this string contains the specified
2071 * @return true if this string contains <code>s</code>, false otherwise
2075 public boolean contains(CharSequence s) { method in class:String
2188 * <p> The array returned by this method contains each substring of this
2780 * If a format string contains an illegal syntax, a format
2824 * If a format string contains a
[all...]

Completed in 409 milliseconds

<<111213141516