Searched defs:contains (Results 176 - 200 of 381) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DJohab_OLD.java43 public boolean contains(Charset cs) { method in class:Johab_OLD
H A DMS936_OLD.java49 public boolean contains(Charset cs) { method in class:MS936_OLD
H A DMS949_OLD.java48 public boolean contains(Charset cs) { method in class:MS949_OLD
H A DMS950_OLD.java47 public boolean contains(Charset cs) { method in class:MS950_OLD
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java128 public boolean contains(Object value) { method in class:Hashtable
273 * Clears this hashtable so that it contains no keys.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DListDV.java106 public boolean contains(Object item) { method in class:ListDV.ListData
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DCaseInsensitiveMap.java129 if (contains(cMap, ciCodePoint, matchType)) {
130 if (!contains(cMap, codePoint)) {
134 if (!contains(codePointMap, c)) {
141 if (!contains(ciCodePointMap, codePoint)) {
149 private static boolean contains(int[] map, int codePoint) { method in class:CaseInsensitiveMap
158 private static boolean contains(int[] map, int codePoint, int matchType) { method in class:CaseInsensitiveMap
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DIntVector.java325 * Tell if the table contains the given node.
331 public final boolean contains(int s) method in class:IntVector
H A DObjectVector.java322 * Tell if the table contains the given Object.
328 public final boolean contains(Object s) method in class:ObjectVector
H A DSuballocatedByteVector.java407 * Tell if the table contains the given node.
413 private boolean contains(byte s) method in class:SuballocatedByteVector
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DActiveObjectMap.java104 public final boolean contains(Servant value) method in class:ActiveObjectMap
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtable.java177 public boolean contains(Object value) { method in class:IdentityHashtable
199 * @see java.util.Hashtable#contains(java.lang.Object)
348 * Clears this hashtable so that it contains no keys.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DStubQueue.java44 StubQueue contains. </P> */
81 public boolean contains(Address pc) { method in class:StubQueue
88 if (contains(pc)) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiTextUI.java224 * Invokes the <code>contains</code> method on each UI handled by this object.
229 public boolean contains(JComponent a, int b, int c) { method in class:MultiTextUI
231 ((ComponentUI) (uis.elementAt(0))).contains(a,b,c);
233 ((ComponentUI) (uis.elementAt(i))).contains(a,b,c);
H A DMultiTreeUI.java215 * Invokes the <code>contains</code> method on each UI handled by this object.
220 public boolean contains(JComponent a, int b, int c) { method in class:MultiTreeUI
222 ((ComponentUI) (uis.elementAt(0))).contains(a,b,c);
224 ((ComponentUI) (uis.elementAt(i))).contains(a,b,c);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java36 * you can test if a point falls inside the map via the contains method.
110 * Returns the AttributeSet that contains the passed in location,
131 if (rc != null && rc.contains(x, y, width, height)) {
241 public boolean contains(int x, int y, int width, int height); method in interface:Map.RegionContainment
293 public boolean contains(int x, int y, int width, int height) { method in class:Map.RectangleRegionContainment
295 return contains(x, y);
313 return contains(x, y);
316 public boolean contains(int x, int y) { method in class:Map.RectangleRegionContainment
384 public boolean contains(int x, int y, int width, int height) { method in class:Map.PolygonRegionContainment
387 return contains(
458 public boolean contains(int x, int y, int width, int height) { method in class:Map.CircleRegionContainment
499 public boolean contains(int x, int y, int width, int height) { method in class:Map.DefaultRegionContainment
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTCharset.java46 public boolean contains(Charset cs) { method in class:AWTCharset
48 return javaCs.contains(cs);
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityArrayList.java106 * The size of the IdentityArrayList (the number of elements it contains).
193 * Returns <tt>true</tt> if this list contains no elements.
195 * @return <tt>true</tt> if this list contains no elements
202 * Returns <tt>true</tt> if this list contains the specified element.
203 * More formally, returns <tt>true</tt> if and only if this list contains
208 * @return <tt>true</tt> if this list contains the specified element
210 public boolean contains(Object o) { method in class:IdentityArrayList
/openjdk7/jdk/src/share/classes/java/util/
H A DDeque.java543 * Returns <tt>true</tt> if this deque contains the specified element.
544 * More formally, returns <tt>true</tt> if and only if this deque contains
549 * @return <tt>true</tt> if this deque contains the specified element
557 boolean contains(Object o); method in interface:Deque
H A DJumboEnumSet.java162 * Returns <tt>true</tt> if this set contains no elements.
164 * @return <tt>true</tt> if this set contains no elements
171 * Returns <tt>true</tt> if this set contains the specified element.
174 * @return <tt>true</tt> if this set contains the specified element
176 public boolean contains(Object e) { method in class:JumboEnumSet
237 * Returns <tt>true</tt> if this set contains all of the elements
241 * @return <tt>true</tt> if this set contains all of the elements
H A DList.java113 * Returns the number of elements in this list. If this list contains
122 * Returns <tt>true</tt> if this list contains no elements.
124 * @return <tt>true</tt> if this list contains no elements
129 * Returns <tt>true</tt> if this list contains the specified element.
130 * More formally, returns <tt>true</tt> if and only if this list contains
135 * @return <tt>true</tt> if this list contains the specified element
143 boolean contains(Object o); method in interface:List
264 * Returns <tt>true</tt> if this list contains all of the elements of the
268 * @return <tt>true</tt> if this list contains all of the elements of the
274 * @throws NullPointerException if the specified collection contains on
[all...]
H A DRegularEnumSet.java125 * Returns <tt>true</tt> if this set contains no elements.
127 * @return <tt>true</tt> if this set contains no elements
134 * Returns <tt>true</tt> if this set contains the specified element.
137 * @return <tt>true</tt> if this set contains the specified element
139 public boolean contains(Object e) { method in class:RegularEnumSet
188 * Returns <tt>true</tt> if this set contains all of the elements
192 * @return <tt>true</tt> if this set contains all of the elements
H A DTreeSet.java35 * operations ({@code add}, {@code remove} and {@code contains}).
211 * Returns {@code true} if this set contains no elements.
213 * @return {@code true} if this set contains no elements
220 * Returns {@code true} if this set contains the specified element.
222 * contains an element {@code e} such that
226 * @return {@code true} if this set contains the specified element
233 public boolean contains(Object o) { method in class:TreeSet
240 * the set contains no element {@code e2} such that
242 * If this set already contains the element, the call leaves the set
262 * if this set contains suc
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DBlockingDeque.java606 * Returns <tt>true</tt> if this deque contains the specified element.
607 * More formally, returns <tt>true</tt> if and only if this deque contains
611 * @return <tt>true</tt> if this deque contains the specified element
618 public boolean contains(Object o); method in interface:BlockingDeque
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleComponent.java191 * @return true if object contains Point; otherwise false
194 public boolean contains(Point p); method in interface:AccessibleComponent
233 * @see #contains
249 * The height field of the Dimension object contains this object's
250 * height, and the width field of the Dimension object contains this

Completed in 196 milliseconds

1234567891011>>