Searched refs:child (Results 176 - 200 of 300) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyInfo.java108 Node child = nl.item(i);
110 if (child.getNodeType() != Node.ELEMENT_NODE) {
113 Element childElem = (Element) child;
H A DDOMX509Data.java107 Node child = nl.item(i);
109 if (child.getNodeType() != Node.ELEMENT_NODE) {
113 Element childElem = (Element) child;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibGroup.java307 * Register a child node of this node in the OID tree.
482 // search to the child, just as done in SnmpMibNode.
485 // get the child ( = nested arc node).
487 final SnmpMibNode child = getChild(arc);
489 if (child != null) {
492 result = child.findNextHandlingNode(varbind,oid,pos+1,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DRELAXNGCompiler.java171 for( DPattern child : cp ) {
172 if(child instanceof DValuePattern) {
173 DValuePattern c = (DValuePattern) child;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollPanePeer.java92 * The child component has been resized. The scrollbars must be
132 Component child = null;
134 child = sp.getComponent(0);
138 return child;
254 // the heavyweight ancestor of the scroll child.
264 "couldn't find heavyweight ancestor of scroll pane child");
/openjdk7/jdk/test/javax/swing/SpringLayout/4726194/
H A Dbug4726194.java156 List child = new ArrayList(soFar);
157 child.set(level - 1, constraints[i]);
158 test(level - 1, constraints, result, child);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTarget.java104 * a child of the impl's class loader, such as when a registry is
124 * Return true if the first class loader is a child of (or identical
130 private static boolean checkLoaderAncestry(ClassLoader child, argument
135 } else if (child == null) {
138 for (ClassLoader parent = child;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java894 for (Element child = DOMUtil.getFirstChildElement(rootNode);
895 child != null;
896 child = DOMUtil.getNextSiblingElement(child)) {
899 String localName = DOMUtil.getLocalName(child);
910 Object[] importAttrs = fAttributeChecker.checkAttributes(child, true, currSchemaInfo);
917 Element importChild = DOMUtil.getFirstChildElement(child);
925 reportSchemaError("s4s-elt-must-match.1", new Object [] {localName, "annotation?", importComponentType}, child);
928 reportSchemaError("s4s-elt-must-match.1", new Object [] {localName, "annotation?", DOMUtil.getLocalName(DOMUtil.getNextSiblingElement(importChild))}, child);
932 String text = DOMUtil.getSyntheticAnnotation(child);
3801 renameRedefiningComponents(XSDocumentInfo currSchema, Element child, String componentType, String oldName, String newName) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOM.java125 // add the current node as child of parent
235 // child and before endElement on annotation.
236 // hence, we must make this the child of the current
237 // parent's only child.
326 for (Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
327 traverse(child, depth);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DElementSchemePointer.java53 // The scheme Data & child sequence
73 // The XPointer element child sequence
76 // The current child position
79 // The current child depth
82 // The current element's child sequence
159 // be atleast twice the size of child sequence, to hold the ChildSequence.
240 * Pointer is present and it is successfully resolved and if a child
241 * sequence is present, the child sequence is resolved relative to it.
250 // if a ChildSequence exisits, resolve child elements
268 // an element if one exisits and start searching from its child
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/filechooser/
H A DFileSystemView.java271 for (File child : children) {
272 if (file.equals(child)) {
287 * File(parent, fileName)</code> except when parent and child are both
295 for (File child : children) {
296 if (child.getName().equals(fileName)) {
297 return child;
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTree.java78 private synchronized void removeChildNode(DefaultMutableTreeNode child) { argument
80 model.removeNodeFromParent(child);
84 * This method adds the child to the specified parent node
90 DefaultMutableTreeNode child,
93 model.insertNodeInto(child, parent, index);
97 * This method adds the child to the specified parent node.
98 * The index where the child is to be added depends on the
99 * child node being Comparable or not. If the child node is
105 DefaultMutableTreeNode parent, DefaultMutableTreeNode child) {
88 addChildNode( DefaultMutableTreeNode parent, DefaultMutableTreeNode child, int index) argument
104 addChildNode( DefaultMutableTreeNode parent, DefaultMutableTreeNode child) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DMetacity.java176 Node child = childNodes.item(j);
177 if (child.getNodeType() == Node.ELEMENT_NODE) {
178 name = child.getNodeName();
181 value = Integer.valueOf(getIntAttr(child, "value", 0));
183 value = new Insets(getIntAttr(child, "top", 0),
184 getIntAttr(child, "left", 0),
185 getIntAttr(child, "bottom", 0),
186 getIntAttr(child, "right", 0));
188 value = new Float(getFloatAttr(child, "value", 1.0F));
192 String childName = getStringAttr(child, "nam
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java760 Node child;
771 child = _current.getFirstChild();
772 if (child == null) {
776 _current = child;
780 child = _current.getFirstChild();
781 if (child == null) {
785 _current = child;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTM.java258 // If the DTM parent had no children, this becomes its first child.
347 // Look down to first child.
926 for (Node child = node.getFirstChild(); null != child;
927 child = child.getNextSibling())
929 getNodeData(child, buf);
935 case Node.ATTRIBUTE_NODE : // Never a child but might be our starting node
1668 for (Node child = node.getFirstChild(); null != child;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJFIFMarkerSegment.java283 Node child = children.item(i);
284 String name = child.getNodeName();
290 NodeList exts = child.getChildNodes();
302 iccSegment = new ICCMarkerSegment(child);
700 // Now the child
703 ("app0JFXX node must have exactly 1 child", node);
705 Node child = node.getFirstChild();
706 String name = child.getNodeName();
711 thumb = new JFIFThumbJPEG(child);
716 thumb = new JFIFThumbPalette(child);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DHTMLSerializer.java706 Node child;
826 child = elem.getFirstChild();
827 while ( child != null ) {
828 serializeNode( child );
829 child = child.getNextSibling();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java358 * The number of nodes in the list. The range of valid child node indices is
586 Node child = (Node) elementAt(i);
588 if (child == node)
595 if (!DOM2Helper.isNodeAfter(node, child))
652 Node child = (Node) elementAt(i);
654 if (child == node)
661 if (!DOM2Helper.isNodeAfter(node, child))
H A DNodeSetDTM.java514 * The number of nodes in the list. The range of valid child node indices is
746 // int child = elementAt(i);
748 // if (child == node)
755 // if (!support.getDOMHelper().isNodeAfter(node, child))
812 int child = elementAt(i);
814 if (child == node)
822 if (!dtm.isNodeAfter(node, child))
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixPath.java373 // Resolve child against given base
374 private static byte[] resolve(byte[] base, byte[] child) { argument
376 int childLength = child.length;
379 if (baseLength == 0 || child[0] == '/')
380 return child;
385 System.arraycopy(child, 0, result, 1, childLength);
390 System.arraycopy(child, 0, result, baseLength+1, childLength);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DRangeImpl.java1001 * removing this child.
1005 Node removeChild(Node parent, Node child) { argument
1006 fRemoveChild = child;
1007 Node n = parent.removeChild(child);
1257 * The ancestor of the end container that is a direct child
1337 * child of the end container.
1407 * container that is a direct child of the common ancestor.
1412 * container that is a direct child of the common ancestor.
1903 // is valid with respect to the number of child nodes
2038 /** what is the index of the child i
2039 indexOf(Node child, Node parent) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DZoneView.java33 * the child views are not created or stored until they are needed
45 * for. The zones don't create child views until an attempt is made
58 * create child views that directly represent the child elements).
69 * boundaries represented by the child elements of the element the view is
105 * a single child view is larger than this
106 * size since zones are formed on child view
150 * @param zone the child view that was just loaded.
169 * child elements of the element this view is responsible for.
173 * @param zone the child vie
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeModel.java150 * Returns the index of child in parent.
151 * If either the parent or child is <code>null</code>, returns -1.
153 * @param child the node we are interested in
154 * @return the index of the child in the parent, or -1
155 * if either the parent or the child is <code>null</code>
157 public int getIndexOfChild(Object parent, Object child) { argument
158 if(parent == null || child == null)
160 return ((TreeNode)parent).getIndex((TreeNode)child);
164 * Returns the child of <I>parent</I> at index <I>index</I> in the parent's
165 * child arra
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DElement.java285 CClassInfo child = owner.getOrCreateElement(e.name).getClassInfo();
286 assert child!=null; // we are requiring them to be classes.
287 p.getTypes().add(new CTypeRef(child,new QName("",e.name),null,false,null));
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DHelper.java228 ValueEntry child = (ValueEntry) entry;
229 while (child.isSafe ())
232 ValueEntry parent = (ValueEntry)child.derivedFrom ().elementAt (0);
234 child = parent;

Completed in 89 milliseconds

1234567891011>>