Searched refs:child (Results 51 - 75 of 300) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DFunction.java52 final Node child = children.item(i);
53 final String childName = child.getLocalName();
56 returnValue = new ReturnValue(child, this);
60 final Arg arg = new Arg(child, this);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.h31 extern Boolean isAncestor(Window ancestor, Window child);
/openjdk7/jdk/test/java/lang/ClassLoader/
H A DUninitializedParent.java59 URLClassLoader child = URLClassLoader.newInstance
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPMetadata.java100 IIOMetadataNode child = new IIOMetadataNode(name);
102 child.setUserObject(object);
103 child.setNodeValue(ImageUtil.convertObjectToString(object));
105 root.appendChild(child);
106 return child;
/openjdk7/jdk/src/solaris/instrument/
H A DFileSystemSupport_md.c117 char* resolve(const char* parent, const char* child) { argument
121 int cn = strlen(child);
129 if (child[0] == slash) {
134 memcpy(theChars+parentEnd, child, cn);
142 memcpy(theChars+parentEnd+1, child, cn);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLiteralElement.java404 // Compile code to emit attributes and child elements
497 SyntaxTreeNode child = (SyntaxTreeNode)contents.elementAt(i);
498 if (child instanceof Text) {
499 Text text = (Text)child;
507 else if (child instanceof LiteralElement
508 || child instanceof ValueOf
509 || child instanceof XslElement
510 || child instanceof Comment
511 || child instanceof Number
512 || child instanceo
[all...]
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextSupport.java231 * is currently a child of this <tt>BeanContext</tt>.
233 * @return if this object is a child
243 * is currently a child of this <tt>BeanContext</tt>.
245 * @return if this object is a child
309 * protected nested class containing per child information, an instance
310 * of which is associated with each child in the "children" hashtable.
311 * subclasses can extend this class to include their own per-child state.
313 * Note that this 'value' is serialized with the corresponding child 'key'
324 child = bcc;
328 Object getChild() { return child; }
342 private Object child; field in class:BeanContextSupport.BCSChild
877 childDeserializedHook(Object child, BCSChild bcsc) argument
1152 childJustAddedHook(Object child, BCSChild bcsc) argument
1161 childJustRemovedHook(Object child, BCSChild bcsc) argument
1169 getChildVisibility(Object child) argument
1182 getChildSerializable(Object child) argument
1196 getChildPropertyChangeListener(Object child) argument
1210 getChildVetoableChangeListener(Object child) argument
1224 getChildBeanContextMembershipListener(Object child) argument
1238 getChildBeanContextChild(Object child) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenMenuBar.java108 final Component child = e.getChild();
109 if (!(child instanceof JMenu)) return;
110 addSubmenu((JMenu)child);
117 final Component child = e.getChild();
118 if (!(child instanceof JMenu)) return;
119 removeSubmenu((JMenu)child);
157 * so we just add or remove the child from the ScreenMenuBar
160 public void setChildVisible(final JMenuItem child, final boolean b) { argument
161 if (child instanceof JMenu) {
163 addSubmenu((JMenu)child);
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DUnixAsynchronousServerSocketChannelImpl.java164 AsynchronousSocketChannel child = null;
167 child = finishAccept(newfd, isaa[0], acceptAcc);
184 future.setResult(child, exc);
187 if (child != null && future.isCancelled()) {
189 child.close();
193 Invoker.invoke(this, handler, att, child, exc);
314 AsynchronousSocketChannel child = null;
318 child = finishAccept(newfd, isaa[0], null);
328 return CompletedFuture.withResult(child, exc);
330 Invoker.invokeIndirectly(this, handler, att, child, ex
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DDOMUtils.java52 /** Gets the fist child of the given name, or null. */
66 /** Gets the child elements of the given name. */
81 /** Gets all the child elements. */
96 for (Node child = element.getFirstChild(); child != null;
97 child = child.getNextSibling()) {
98 if(child.getNodeType() == Node.TEXT_NODE)
99 return child.getNodeValue();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLoader.java64 * and when the parent designated this loader as the child loader.
78 * Called when this loaderis an active loaderand we see a new child start tag.
109 * Returns a set of tag names expected as possible child elements in this context.
116 * Returns a set of tag names expected as possible child elements in this context.
187 * state of the newly create child object.
189 protected final void fireBeforeUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) throws SAXException { argument
194 beanInfo.invokeBeforeUnmarshalMethod(context.parent, child, state.prev.target);
197 listener.beforeUnmarshal(child, state.prev.target);
208 protected final void fireAfterUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) throws SAXException { argument
214 beanInfo.invokeAfterUnmarshalMethod(context.parent, child, stat
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeModel.java42 public int getIndexOfChild(SimpleTreeNode child) { return 0; }
84 public int getIndexOfChild(Object parent, Object child) { argument
85 return ((SimpleTreeNode) parent).getIndexOfChild((SimpleTreeNode) child);
H A DBadOopTreeNodeAdapter.java59 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DCStringTreeNodeAdapter.java55 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DLongTreeNodeAdapter.java64 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DRootTreeNodeAdapter.java56 public int getIndexOfChild(SimpleTreeNode child) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DElementBeanInfoImpl.java217 Object child;
221 child = context.getOuterPeer();
223 if(child!=null && jaxbType!=child.getClass())
224 child = null; // unexpected type.
226 if(child!=null)
227 reset((JAXBElement)child,context);
229 if(child==null)
230 child = context.createInstance(ElementBeanInfoImpl.this);
232 fireBeforeUnmarshal(ElementBeanInfoImpl.this, child, stat
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DContainerElement.java63 * When this element can accept more child content, this value
64 * is non-null and holds the last child {@link Content}.
240 * Appends this child object to the tail.
242 private void addChild(Content child) { argument
243 tail.setNext(document,child);
244 tail = child;
357 ContainerElement child = new ContainerElement(document,this,nsUri,localName);
358 addChild(child.startTag);
359 tail = child.endTag;
365 assert child
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DUtil.java72 XSType[] child = listDirectSubstitutables(_this);
73 for( int i=0; i<child.length; i++ )
74 buildSubstitutables( head, child[i], substitutables );
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/tree/
H A DAddressTreeNodeAdapter.java57 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DDoubleTreeNodeAdapter.java56 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DFloatTreeNodeAdapter.java56 public int getIndexOfChild(SimpleTreeNode child) { argument
H A DLongTreeNodeAdapter.java56 public int getIndexOfChild(SimpleTreeNode child) { argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTextLayoutStrategy.java40 * If the child view being placed into the flow is of type
103 * the rows (child views) to be rebuilt to match the given
105 * to update the child views in the flow.
116 * superclass functionality (which fills the row with child
179 // Get the child view that contains the given starting position
318 View child = lv.getView(i);
319 if( child instanceof GlyphView ) {
320 int p0 = child.getStartOffset();
321 int p1 = child.getEndOffset();
326 ((GlyphView)child)
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DXMLSchemaInternalizationLogic.java91 * and insert it as the first child of the given parent node.
104 Element child = parent.getOwnerDocument().createElementNS( WellKnownNamespace.XML_SCHEMA, qname );
109 parent.appendChild(child);
111 parent.insertBefore( child, children.item(0) );
113 return child;

Completed in 82 milliseconds

1234567891011>>