Searched defs:contains (Results 226 - 250 of 381) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DIBM964.java53 public boolean contains(Charset cs) { method in class:IBM964
H A DISCII91.java55 public boolean contains(Charset cs) { method in class:ISCII91
H A DISO2022_CN.java64 public boolean contains(Charset cs) { method in class:ISO2022_CN
H A DSJIS.java52 public boolean contains(Charset cs) { method in class:SJIS
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSObjectListImpl.java150 public boolean contains(Object value) { method in class:XSObjectListImpl
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DNodeVector.java555 * Tell if the table contains the given node.
561 public boolean contains(int s) method in class:NodeVector
H A DSuballocatedIntVector.java448 * Tell if the table contains the given node.
454 private boolean contains(int s) method in class:SuballocatedIntVector
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubject.java1096 if (!elements.contains(o))
1131 public boolean contains(Object o) { method in class:Subject.SecureSet
1143 // it contains the Object
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListModel.java190 * @see Vector#contains(Object)
192 public boolean contains(Object elem) { method in class:DefaultListModel
193 return delegate.contains(elem);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java175 public boolean contains(Object o) { method in class:BasicDirectoryModel
176 return fileCache.contains(o);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java245 // client properties (assuming such a component exists and contains
821 private boolean contains(String[] names, String name) { method in class:NimbusStyle
875 if (contains(states, s.getName())) {
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java183 * Returns <tt>true</tt> if this list contains the specified element.
184 * More formally, returns <tt>true</tt> if and only if this list contains
189 * @return <tt>true</tt> if this list contains the specified element
191 public boolean contains(Object o) { method in class:IdentityLinkedList
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java402 * path contains 0 or 1 subpaths, or <code>false</code> if the path
403 * contains more than 1 subpath. The subpaths are counted by the
533 * Creates a new <code>Area</code> object that contains the same
554 public boolean contains(double x, double y) { method in class:Area
555 if (!getCachedBounds().contains(x, y)) {
571 public boolean contains(Point2D p) { method in class:Area
572 return contains(p.getX(), p.getY());
579 public boolean contains(double x, double y, double w, double h) { method in class:Area
583 if (!getCachedBounds().contains(x, y, w, h)) {
594 public boolean contains(Rectangle2 method in class:Area
[all...]
H A DLine2D.java987 * objects it always returns <code>false</code> since a line contains
991 * @return <code>false</code> because a <code>Line2D</code> contains
995 public boolean contains(double x, double y) { method in class:Line2D
1004 * <code>false</code> since a line contains no area.
1006 * @return <code>false</code> because a <code>Line2D</code> contains
1010 public boolean contains(Point2D p) { method in class:Line2D
1031 * Tests if the interior of this <code>Line2D</code> entirely contains
1035 * false since a line contains no area.
1042 * @return <code>false</code> because a <code>Line2D</code> contains
1046 public boolean contains(doubl method in class:Line2D
1061 public boolean contains(Rectangle2D r) { method in class:Line2D
[all...]
H A DRectangle2D.java662 public boolean contains(double x, double y) { method in class:Rectangle2D
691 public boolean contains(double x, double y, double w, double h) { method in class:Rectangle2D
786 * contains both the original <code>Rectangle2D</code> and the
789 * After adding a point, a call to <code>contains</code> with the
791 * <code>true</code>. The <code>contains</code> method does not
795 * <code>contains</code> returns <code>false</code> for that point.
812 * <code>Rectangle2D</code> that contains both the original
815 * After adding a point, a call to <code>contains</code> with the
817 * <code>true</code>. The <code>contains</code>
821 * <code>contains</cod
[all...]
H A DRectangularShape.java311 public boolean contains(Point2D p) { method in class:RectangularShape
312 return contains(p.getX(), p.getY());
327 public boolean contains(Rectangle2D r) { method in class:RectangularShape
328 return contains(r.getX(), r.getY(), r.getWidth(), r.getHeight());
H A DRoundRectangle2D.java517 public boolean contains(double x, double y) { method in class:RoundRectangle2D
607 public boolean contains(double x, double y, double w, double h) { method in class:RoundRectangle2D
611 return (contains(x, y) &&
612 contains(x + w, y) &&
613 contains(x, y + h) &&
614 contains(x + w, y + h));
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset.java60 * constructing a map that contains every charset for which support is
724 * Tells whether or not this charset contains the given charset.
732 * <p> That <i>C</i> contains <i>D</i> does not imply that each character
737 * <p> Every charset contains itself.
747 public abstract boolean contains(Charset cs); method in class:Charset
/openjdk7/jdk/src/share/classes/java/util/
H A DArrayDeque.java50 * removeLastOccurrence}, {@link #contains contains}, {@link #iterator
579 * Returns <tt>true</tt> if this deque contains no elements.
581 * @return <tt>true</tt> if this deque contains no elements
686 * Returns <tt>true</tt> if this deque contains the specified element.
687 * More formally, returns <tt>true</tt> if and only if this deque contains
691 * @return <tt>true</tt> if this deque contains the specified element
693 public boolean contains(Object o) { method in class:ArrayDeque
H A DArrays.java31 * This class contains various methods for manipulating arrays (such as
32 * sorting and searching). This class also contains a static factory
462 * @throws ClassCastException if the array contains elements that are not
529 * @throws ClassCastException if the array contains elements that are
650 * @throws ClassCastException if the array contains elements that are
714 * @throws ClassCastException if the array contains elements that are not
811 * is not sorted, the results are undefined. If the array contains
837 * is not sorted, the results are undefined. If the range contains
892 * is not sorted, the results are undefined. If the array contains
918 * is not sorted, the results are undefined. If the range contains
2888 public boolean contains(Object o) { method in class:Arrays.ArrayList
[all...]
H A DEnumMap.java164 * <tt>EnumMap</tt> instance and contains no mappings
213 * Returns <tt>true</tt> if this map contains a mapping for the specified
217 * @return <tt>true</tt> if this map contains a mapping for the specified
231 * or {@code null} if this map contains no mapping for the key.
233 * <p>More formally, if this map contains a mapping from a key
239 * indicate that the map contains no mapping for the key; it's also
396 public boolean contains(Object o) { method in class:EnumMap.KeySet
434 public boolean contains(Object o) { method in class:EnumMap.Values
476 public boolean contains(Object o) { method in class:EnumMap.EntrySet
H A DPriorityQueue.java68 * linear time for the {@code remove(Object)} and {@code contains(Object)}
351 * that {@code o.equals(e)}, if this queue contains one or more such
387 * Returns {@code true} if this queue contains the specified element.
388 * More formally, returns {@code true} if and only if this queue contains
392 * @return {@code true} if this queue contains the specified element
394 public boolean contains(Object o) { method in class:PriorityQueue
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java450 * that {@code o.equals(e)}, if this queue contains one or more such
483 * Returns {@code true} if this queue contains the specified element.
484 * More formally, returns {@code true} if and only if this queue contains
488 * @return {@code true} if this queue contains the specified element
490 public boolean contains(Object o) { method in class:ArrayBlockingQueue
H A DConcurrentLinkedQueue.java423 * Returns {@code true} if this queue contains no elements.
425 * @return {@code true} if this queue contains no elements
433 * contains more than {@code Integer.MAX_VALUE} elements, returns
458 * Returns {@code true} if this queue contains the specified element.
459 * More formally, returns {@code true} if and only if this queue contains
463 * @return {@code true} if this queue contains the specified element
465 public boolean contains(Object o) { method in class:ConcurrentLinkedQueue
478 * that {@code o.equals(e)}, if this queue contains one or more such
H A DConcurrentSkipListSet.java48 * cost for the <tt>contains</tt>, <tt>add</tt>, and <tt>remove</tt>
176 * contains more than <tt>Integer.MAX_VALUE</tt> elements, it
195 * Returns <tt>true</tt> if this set contains no elements.
196 * @return <tt>true</tt> if this set contains no elements
203 * Returns <tt>true</tt> if this set contains the specified element.
205 * contains an element <tt>e</tt> such that <tt>o.equals(e)</tt>.
208 * @return <tt>true</tt> if this set contains the specified element
213 public boolean contains(Object o) { method in class:ConcurrentSkipListSet
220 * the set contains no element <tt>e2</tt> such that <tt>e.equals(e2)</tt>.
221 * If this set already contains th
[all...]

Completed in 322 milliseconds

1234567891011>>