Searched refs:child (Results 26 - 50 of 300) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DParentNode.java35 * ParentNode inherits from ChildNode and adds the capability of having child
47 * While we have a direct reference to the first child, the last child is
48 * stored as the previous sibling of the first child. First child nodes are
50 * <P>Note: Not all parent nodes actually need to also be a child. At some
55 * DocumentFragment, Entity, and Attribute) cannot be a child so the gain in
82 /** First child. */
146 for (ChildNode child = firstChild;
147 child !
652 hasTextContent(Node child) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeNode.java36 public int getIndexOfChild(SimpleTreeNode child); argument
H A DBooleanTreeNodeAdapter.java55 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DCharTreeNodeAdapter.java55 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DDoubleTreeNodeAdapter.java55 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DFloatTreeNodeAdapter.java55 public int getIndexOfChild(SimpleTreeNode child) { argument
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DMutableTreeNode.java30 * by adding or removing child nodes, or by changing the contents
43 * Adds <code>child</code> to the receiver at <code>index</code>.
44 * <code>child</code> will be messaged with <code>setParent</code>.
46 void insert(MutableTreeNode child, int index); argument
49 * Removes the child at <code>index</code> from the receiver.
H A DTreeModel.java74 * Returns the child of <code>parent</code> at index <code>index</code>
76 * child array. <code>parent</code> must be a node previously obtained
83 * @return the child of <code>parent</code> at index <code>index</code>
125 * Returns the index of child in parent. If either <code>parent</code>
126 * or <code>child</code> is <code>null</code>, returns -1.
127 * If either <code>parent</code> or <code>child</code> don't
131 * @param child the node we are interested in
132 * @return the index of the child in the parent, or -1 if either
133 * <code>child</code> or <code>parent</code> are <code>null</code>
136 public int getIndexOfChild(Object parent, Object child); argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMUtils.java112 * Returns the first child element of the specified node, or null if there
116 * @return the first child element of the specified node, or null if there
121 Node child = node.getFirstChild();
122 while (child != null && child.getNodeType() != Node.ELEMENT_NODE) {
123 child = child.getNextSibling();
125 return (Element) child;
129 * Returns the last child element of the specified node, or null if there
133 * @return the last child elemen
278 appendChild(Node parent, Node child) argument
[all...]
H A DDOMSubTreeData.java145 for (Node child = node.getFirstChild(); child != null;
146 child = child.getNextSibling()) {
147 nodeSetMinusCommentNodes(child, nodeSet, pSibling);
148 pSibling = child;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/ui/
H A DEnableButton.java80 Node child = children.next();
82 child.restoreDefault();
83 } else if (child instanceof Option.Enable) {
84 Option.Enable enable = (Option.Enable) child;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDElementTraverser.java172 Element child = DOMUtil.getFirstChildElement(elmDecl);
173 if (child != null && DOMUtil.getLocalName(child).equals(SchemaSymbols.ELT_ANNOTATION)) {
174 annotation = traverseAnnotationDecl(child, attrValues, false, schemaDoc);
175 child = DOMUtil.getNextSiblingElement(child);
187 if (child != null) {
188 reportSchemaError("src-element.2.2", new Object[]{refAtt.rawname, DOMUtil.getLocalName(child)}, child);
361 Element child
[all...]
H A DXSDAbstractTraverser.java72 // CHILD_OF_GROUP - processing a child of a model group definition
115 Element child = DOMUtil.getFirstChildElement(annotationDecl);
116 if (child != null) {
118 String name = DOMUtil.getLocalName(child);
124 reportSchemaError("src-annotation", new Object[]{name}, child);
130 attrValues = fAttrChecker.checkAttributes(child, true, schemaDoc);
134 child = DOMUtil.getNextSiblingElement(child);
136 while (child != null);
345 Element child
[all...]
H A DXSDWildcardTraverser.java164 Element child = DOMUtil.getFirstChildElement(elmNode);
166 if (child != null)
168 if (DOMUtil.getLocalName(child).equals(SchemaSymbols.ELT_ANNOTATION)) {
169 annotation = traverseAnnotationDecl(child, attrValues, false, schemaDoc);
170 child = DOMUtil.getNextSiblingElement(child);
179 if (child != null) {
180 reportSchemaError("s4s-elt-must-match.1", new Object[]{"wildcard", "(annotation?)", DOMUtil.getLocalName(child)}, elmNode);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DSlotLayout.java65 for (Widget child : children) {
66 Rectangle preferredBounds = child.getPreferredBounds();
73 for (Widget child : children) {
74 Rectangle preferredBounds = child.getPreferredBounds();
94 child.resolveBounds(new Point(lx, ly), new Rectangle(x, y, width, height));
102 for (Widget child : children) {
103 Rectangle preferredBounds = child.getPreferredBounds();
110 for (Widget child : children) {
111 Rectangle preferredBounds = child.getPreferredBounds();
131 child
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCHandler.java75 * Notifies the completion of a child object.
78 * The parsing result of the child state.
80 * The cookie value passed to the child object
92 // spawns a new child object from event handlers.
95 public void spawnChildFromEnterElement( NGCCEventReceiver child, argument
98 int id = _source.replace(this,child);
101 public void spawnChildFromEnterAttribute( NGCCEventReceiver child, argument
104 int id = _source.replace(this,child);
107 public void spawnChildFromLeaveElement( NGCCEventReceiver child, argument
110 int id = _source.replace(this,child);
113 spawnChildFromLeaveAttribute( NGCCEventReceiver child, String uri, String localname, String qname) argument
119 spawnChildFromText( NGCCEventReceiver child, String value) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCHandler.java75 * Notifies the completion of a child object.
78 * The parsing result of the child state.
80 * The cookie value passed to the child object
92 // spawns a new child object from event handlers.
95 public void spawnChildFromEnterElement( NGCCEventReceiver child, argument
98 int id = _source.replace(this,child);
101 public void spawnChildFromEnterAttribute( NGCCEventReceiver child, argument
104 int id = _source.replace(this,child);
107 public void spawnChildFromLeaveElement( NGCCEventReceiver child, argument
110 int id = _source.replace(this,child);
113 spawnChildFromLeaveAttribute( NGCCEventReceiver child, String uri, String localname, String qname) argument
119 spawnChildFromText( NGCCEventReceiver child, String value) argument
[all...]
/openjdk7/jdk/test/java/lang/InheritableThreadLocal/
H A DITLRemoveTest.java88 Thread child = null;
92 // Creating child thread...
94 child = new MyThread();
95 child.start();
120 // Wait for child (if any)
121 if (child != null) {
123 child.join();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DThreadTreeTool.java273 ThreadTreeNode child = insertNode(head, null);
274 child.addThread(tail, thread);
280 ThreadTreeNode child = (ThreadTreeNode)getChildAt(i);
281 int cmp = name.compareTo(child.getName());
284 return child;
286 // Insert new node before the child.
292 // Insert new node after last child.
313 ThreadTreeNode child = findLeafNode(thread, name);
314 treeModel.removeNodeFromParent(child);
318 ThreadTreeNode child
[all...]
H A DClassTreeTool.java224 ClassTreeNode child = insertNode(head, null);
225 child.addClass(tail, refTy);
231 ClassTreeNode child = (ClassTreeNode)getChildAt(i);
232 int cmp = name.compareTo(child.toString());
235 return child;
237 // insert new node before the child
243 // insert new node after last child
255 ClassTreeNode child = findNode(className);
257 treeModel.removeNodeFromParent(child);
262 ClassTreeNode child
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/tree/
H A DObjectTreeNodeAdapter.java77 public int getIndexOfChild(SimpleTreeNode child) { argument
78 FieldIdentifier id = ((FieldTreeNodeAdapter) child).getID();
115 private SimpleTreeNode child; field in class:ObjectTreeNodeAdapter.Fetcher
122 return child;
127 child = new LongTreeNodeAdapter(val, f, getTreeTableMode());
134 child = new LongTreeNodeAdapter(val, f, getTreeTableMode());
141 child = new EnumTreeNodeAdapter(enumName, val, f, getTreeTableMode());
148 child = new FloatTreeNodeAdapter(val, f, getTreeTableMode());
155 child = new DoubleTreeNodeAdapter(val, f, getTreeTableMode());
162 child
[all...]
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextMembershipEvent.java102 * Is the child specified affected by the event?
106 public boolean contains(Object child) { argument
107 return children.contains(child);
H A DBeanContextServices.java103 * @param child the <code>BeanContextChild</code>
115 Object getService(BeanContextChild child, Object requestor, Class serviceClass, Object serviceSelector, BeanContextServiceRevokedListener bcsrl) throws TooManyListenersException; argument
122 * @param child the <code>BeanContextChild</code>
126 void releaseService(BeanContextChild child, Object requestor, Object service); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWSDLInternalizationLogic.java107 Element child = parent.getOwnerDocument().createElementNS(JAXWSBindingsConstants.NS_JAXWS_BINDINGS, qname );
112 parent.appendChild(child);
114 parent.insertBefore( child, children.item(0) );
116 return child;
122 * and insert it as the first child of the given parent node.
135 Element child = parent.getOwnerDocument().createElementNS( Constants.NS_XSD, qname );
140 parent.appendChild(child);
142 parent.insertBefore( child, children.item(0) );
144 return child;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenMenuPropertyHandler.java40 public void setChildVisible(javax.swing.JMenuItem child, boolean b); argument

Completed in 57 milliseconds

1234567891011>>