Searched refs:child (Results 126 - 150 of 300) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DEndpointReferenceUtil.java223 Element child = (Element) nodes.item(i);
224 if (child.getNamespaceURI().equals(AddressingVersion.W3C.nsUri) &&
225 child.getLocalName().equals(AddressingVersion.W3C.eprType.address)) {
228 msEpr.addr.uri = XmlUtil.getTextForNode(child);
231 msEpr.addr.attributes = getAttributes(child);
232 } else if (child.getNamespaceURI().equals(AddressingVersion.W3C.nsUri) &&
233 child.getLocalName().equals("ReferenceParameters")) {
234 NodeList refParams = child.getChildNodes();
244 } else if (child.getNamespaceURI().equals(AddressingVersion.W3C.nsUri) &&
245 child
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DAttributeSet.java112 // Parse the contents of this node. All child elements must be
117 SyntaxTreeNode child = (SyntaxTreeNode)contents.elementAt(i);
118 if (child instanceof XslAttribute) {
119 parser.getSymbolTable().setCurrentNode(child);
120 child.parseContents(parser);
122 else if (child instanceof Text) {
H A DMessage.java71 SyntaxTreeNode child = (SyntaxTreeNode) elementAt(0);
72 if (child instanceof Text) {
73 il.append(new PUSH(cpg, ((Text) child).getText()));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DOp.java191 Op child; field in class:Op.ChildOp
195 void setChild(Op child) { argument
196 this.child = child;
199 return this.child;
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DTooManyFooTest.java160 private static void test(Object child, String name, boolean mxbean) argument
166 server.registerMBean(child,childName);
230 final Child child = new Child();
231 test(child,"Child[MBean]",false);
236 final StandardMBean schild = new StandardMBean(child,ChildMBean.class);
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DVerifyAccess.java183 ClassLoader child = refc.getClassLoader();
184 if (child == null) return false;
185 if (parent == child || loadersAreRelated(parent, child, true))
189 Class<?> res = child.loadClass(type.getName());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDComplexTypeTraverser.java255 Element child = null;
259 // First, handle any ANNOTATION declaration and get next child
261 child = DOMUtil.getFirstChildElement(complexTypeDecl);
262 if(child != null) {
263 if (DOMUtil.getLocalName(child).equals(SchemaSymbols.ELT_ANNOTATION)) {
264 addAnnotation(traverseAnnotationDecl(child, attrValues, false, schemaDoc));
265 child = DOMUtil.getNextSiblingElement(child);
273 if (child !=null && DOMUtil.getLocalName(child)
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/graph/
H A DGraphImpl.java151 Node child = (Node)iter.next() ;
153 // Make sure the child is in the graph so it can be
155 graph.add( child ) ;
157 // Mark the child as a non-root, since a child is never a root.
158 NodeData cnd = graph.getNodeData( child ) ;
/openjdk7/jdk/src/share/classes/java/io/
H A DFile.java259 private File(String child, File parent) { argument
262 this.path = fs.resolve(parent.path, child);
285 instead causes the child to be resolved against the system-dependent
292 * and a child pathname string.
297 * <code>child</code> pathname string.
300 * a directory, and the <code>child</code> pathname string is taken to
301 * denote either a directory or a file. If the <code>child</code> pathname
305 * <code>child</code> into an abstract pathname and resolving the result
307 * string is converted into an abstract pathname and the child abstract
311 * @param child Th
315 File(String parent, String child) argument
358 File(File parent, String child) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DBody1_2Impl.java117 protected boolean isFault(SOAPElement child) { argument
118 return (child.getElementName().getURI().equals(
120 child.getElementName().getLocalName().equals(
132 * child element of the SOAP Body.
/openjdk7/jdk/src/share/classes/java/awt/
H A DScrollPane.java42 * vertical scrolling for a single child component. The display
59 * with the geometry of the scrollpane and its child and these should
65 * the child's contents appropriately. This policy is useful if the
110 * only when the size of the child exceeds the size of the scrollpane
117 * shown regardless of the respective sizes of the scrollpane and child.
123 * regardless of the respective sizes of the scrollpane and child.
233 // The scrollpane won't work with a windowless child... it assumes
234 // it is moving a child window around so the windowless child is
237 Panel child
[all...]
/openjdk7/jdk/src/macosx/classes/java/util/prefs/
H A DMacOSXPreferencesFile.java367 boolean addChildToNode(String path, String child) argument
371 return addChildToNode(path, child+"/", appName, user, host);
375 void removeChildFromNode(String path, String child) argument
379 removeChildFromNode(path, child+"/", appName, user, host);
441 addChildToNode(String path, String child, argument
444 removeChildFromNode(String path, String child, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DJaxBeanInfo.java335 * Serializes child elements and texts into the specified target.
526 public final void invokeBeforeUnmarshalMethod(UnmarshallerImpl unm, Object child, Object parent) throws SAXException { argument
528 invokeUnmarshallCallback(m, child, unm, parent);
534 public final void invokeAfterUnmarshalMethod(UnmarshallerImpl unm, Object child, Object parent) throws SAXException { argument
536 invokeUnmarshallCallback(m, child, unm, parent);
539 private void invokeUnmarshallCallback(Method m, Object child, UnmarshallerImpl unm, Object parent) throws SAXException { argument
541 m.invoke(child,unm,parent);
H A DAnyTypeBeanInfo.java95 Node child = childNodes.item(i);
96 switch(child.getNodeType()) {
99 target.text(child.getNodeValue(),null);
102 target.writeDom((Element)child,domHandler,null,null);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DAbstractTreeTableModel.java59 public int getIndexOfChild(Object parent, Object child) { argument
61 if (getChild(parent, i).equals(child)) {
/openjdk7/jdk/test/java/awt/Multiscreen/UpdateGCTest/
H A DUpdateGCTest.java27 @summary Tests that all the child and toplevel components have
140 for (Component child : children)
142 checkGC(child, gc);
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DSocketInheritance.java26 * @summary Sockets shouldn't be inherited when creating a child process
73 // simple child process that handshakes with the parent and then
75 static void child(int port) { method in class:SocketInheritance
106 // launch the child
112 cmd += " SocketInheritance -child " + port;
119 // wait for child to connect
147 if (args[0].equals("-child")) {
148 child(Integer.parseInt(args[1]));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DBaseMarkupSerializer.java120 * last child of an element, or immediate following or preceding
1109 Node child;
1124 child = node.getFirstChild();
1125 while ( child != null ) {
1126 serializeNode( child );
1127 child = child.getNextSibling();
1144 child = node.getFirstChild();
1145 while ( child != null ) {
1146 serializeNode( child );
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DCoreDocumentImpl.java148 /** Table for quick check of child insertion. */
374 * Since a Document may contain at most one top-level Element child,
390 // Only one such child permitted
700 * Convenience method, allowing direct access to the child node
1033 Node child = el.getFirstChild();
1034 while (child != null) {
1035 el.removeChild(child);
1036 nel.appendChild(child);
1037 child = el.getFirstChild();
1100 Node child
2253 isKidOK(Node parent, Node child) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DBadAddressTreeNodeAdapter.java74 public int getIndexOfChild(SimpleTreeNode child) { argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLObject.java109 Node child = nodes.item(i);
110 if (child.getNodeType() == Node.ELEMENT_NODE) {
111 Element childElem = (Element) child;
125 content.add(new javax.xml.crypto.dom.DOMStructure(child));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java217 ElementHandler child = parent.getChild(qName);
218 if (child != null) {
219 child.startElement(parent, atts, monitor);
220 stack.push(child);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTSurfaceLayers.m71 for(CALayer *child in aLayer.sublayers) {
72 [AWTSurfaceLayers repaintLayersRecursively: child];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DBodyImpl.java57 protected abstract boolean isFault(SOAPElement child); argument
129 SOAPElement child = (SOAPElement) eachChild.next();
130 if (isFault(child)) {
131 return child;
236 // Return the child element with the required name which is at the
295 "SAAJ0250.impl.body.should.have.exactly.one.child");
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DPaddingTest.java192 Process child = Runtime.getRuntime().exec
194 InputStream in = child.getInputStream();
200 child.waitFor();
201 System.out.println("child exited with " + child.exitValue());

Completed in 91 milliseconds

1234567891011>>