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

<<111213141516

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java955 // find out whether the content contains any non-whitespace character.
1589 // find out whether the content contains any non-whitespace character.
2448 if (grammar.getDocumentLocations().contains(XMLEntityManager.expandSystemId(xis.getSystemId(), xis.getBaseSystemId(), false))) {
2491 if (!docLocations.contains(id)) {
3601 * Returns true if this value store contains the locally scoped value stores
3603 public boolean contains() { method in class:XMLSchemaValidator.ValueStoreBase
3631 } // contains():boolean
3634 * Returns -1 if this value store contains the specified
3638 public int contains(ValueStoreBase vsb) { method in class:XMLSchemaValidator.ValueStoreBase
3645 if (!valueTypeContains(val) || !fValues.contains(value
4290 public boolean contains(short value) { method in class:XMLSchemaValidator.ShortVector
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java114 * <code>JComponent</code> contains all of the methods in the
1751 * @return true if this component logically contains x,y
1752 * @see java.awt.Component#contains(int, int)
1755 public boolean contains(int x, int y) { method in class:JComponent
1756 return (ui != null) ? ui.contains(this, x, y) : super.contains(x, y);
3124 * rectangle that contains the mouse event's location. All of
3846 * it contains a concise description of the object (instead of just
4159 * contains null, or if any Object in keystrokes is not an
5349 * @return the <code>JRootPane</code> that contains thi
[all...]
H A DJTree.java3655 * @throws ClassCastException if {@code toRemove} contains an
4707 } else if (states.contains(AccessibleState.SHOWING)) {
4712 } else if (states.contains(AccessibleState.VISIBLE)) {
5128 public boolean contains(Point p) { method in class:JTree.AccessibleJTree.AccessibleJTreeNode
5132 return r.contains(p);
5137 return r.contains(p);
5139 return getBounds().contains(p);
H A DJTable.java3553 * Returns the index of the column that contains the cell currently
3556 * @return the index of the column that contains the cell currently
3565 * Returns the index of the row that contains the cell currently
3568 * @return the index of the row that contains the cell currently
3743 * Returns the <code>TableColumnModel</code> that contains all column information
5054 // The visibleRect contains a single large cell. Scroll to the end
8091 if (as.contains(AccessibleState.SHOWING)) {
8097 } else if (as.contains(AccessibleState.SELECTED)) {
8561 * @return true if object contains <code>Point</code>;
8564 public boolean contains(Poin method in class:JTable.AccessibleJTable.AccessibleJTableCell
9365 public boolean contains(Point p) { method in class:JTable.AccessibleJTable.AccessibleJTableHeaderCell
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java1054 // because the parent field of the Window object contains
1202 * the frame that contains a component controls which
2118 * field of the <code>Dimension</code> object contains
2120 * field of the <code>Dimension</code> object contains
3079 * image is displayed when the <code>contains</code> method for
3097 * @see #contains
4592 * Checks whether this component "contains" the specified point,
4600 public boolean contains(int x, int y) { method in class:Component
4606 * replaced by contains(int, int).
4614 * Checks whether this component "contains" th
4622 public boolean contains(Point p) { method in class:Component
9422 public boolean contains(Point p) { method in class:Component.AccessibleAWTComponent
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.h615 GtkFileFilterFlags contains; member in struct:__anon1007

Completed in 108 milliseconds

<<111213141516