Searched refs:child (Results 251 - 275 of 300) sorted by relevance

<<1112

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/addon/episode/
H A DPluginImpl.java184 Bindings child = group.bindings();
185 oa.buildBindings(child);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DElementInfoImpl.java421 private void addSubstitutionMember(ElementInfoImpl<T,C,F,M> child) { argument
424 substitutionMembers.add(child);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJInternalFrame.java65 * is where you add child components.
70 * internalFrame.add(child);
72 * And the child will be added to the contentPane.
420 for (Component child : children) {
421 SwingUtilities.updateComponentTreeUI(child);
480 * Adds the specified child <code>Component</code>.
509 * <code>comp</code> is not a child of the <code>JInternalFrame</code>
630 * description: The client area of the internal frame where child
1389 * returns the child that has focus.
1403 * Returns the child componen
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DBoxView.java86 * the child views are tiled.
99 * the child views are tiled.
116 * any of the child views. In some cases the layout
151 * Paints a child. By default
153 * things relative to the child.
157 * @param index the child index, >= 0 && < getViewCount()
160 View child = getView(index);
161 child.paint(g, alloc);
168 * requests/allocations. The child allocations can still
172 * @param index the starting index into the child view
275 preferenceChanged(View child, boolean width, boolean height) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DMenuComponent.java611 * Returns the nth <code>Accessible</code> child of the object.
613 * @param i zero-based index of child
614 * @return the nth Accessible child of the object
887 * Returns the <code>Accessible</code> child, if one exists,
889 * If there is no <code>Accessible</code> child, <code>null</code>
953 * selected child in the object. If there isn't a selection, or there are
956 * <p>Note that the index represents the i-th selected child, which
957 * is different from the i-th child.
960 * @return the i-th selected child
968 * Determines if the current child o
1047 getAccessibleChildIndex(MenuComponent child) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_ScrollPane.cpp558 jobject child = JNU_CallMethodByName(env, NULL, GetPeer(env), local
564 if (child != NULL) {
566 (env)->GetObjectField(child, AwtComponent::peerID);
571 /* Verify child window is positioned correctly. */
581 env->DeleteLocalRef(child);
H A Dawt_Component.h232 * Returns an increasing unsigned value used for child control IDs.
773 // provides a unique ID for child controls
848 ChildListItem* child = new ChildListItem(id, component); local
849 child->m_next = m_childList;
850 m_childList = child;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSAXImpl.java1039 for (int child = getFirstChild(node); child != DTM.NULL;
1040 child = getNextSibling(child)) {
1041 print(child, level + 1);
1179 * containing nodes of a typed axis (ex.: child::foo)
1386 * filter on top of a basic child iterator, but a specialised
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c635 but the widget may be child of one with
1315 Boolean IsRootOf(Window root, Window child) { argument
1318 if (root == None || child == None) {
1326 if (XQueryTree(awt_display, child, &w_root, &w_parent,
1340 child = w_parent;
1509 isAncestor(Window ancestor, Window child) { argument
1514 while (child != ancestor) {
1518 status = XQueryTree(awt_display, child, &root, &parent,
1523 if (child != ancestor) {
1533 child
[all...]
H A Dawt_InputMethod.c663 Window child; local
736 &child);
808 Window child; local
840 &child);
967 Window child; local
973 &child);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthLookAndFeel.java297 for (Component child : children) {
298 updateStyles(child);
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java138 * @param allowsChildren if true, the node is allowed to have child
155 * parent), sets the child's parent to this node, and then adds the child
156 * to this node's child array at index <code>childIndex</code>.
161 * @param childIndex the index in this node's child array
176 throw new IllegalArgumentException("new child is null");
178 throw new IllegalArgumentException("new child is an ancestor");
194 * Removes the child at the specified index from this node's children
195 * and sets that node's parent to null. The child node to remove
198 * @param childIndex the index in this node's child arra
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp2203 for (ch = lp->child(); ch != NULL && ch->head() != head; ch = ch->sibling());
2405 while (_current->child() != NULL) {
2406 _current = _current->child();
2419 if (_current->child() != NULL) {
2420 _current = _current->child();
2555 l->set_sibling(p->child()); // Put self on parents 'next child'
2556 p->set_child(l); // Make self the first child of parent
2608 for (Loop* ch = child(); ch != NULL; ch = ch->sibling())
2715 if (loop_tree_root()->child() !
[all...]
H A DciTypeFlow.hpp718 Loop* _child; // Head of child list threaded thru sibling pointer
732 Loop* child() const { return _child; } function in class:ciTypeFlow::Loop
774 while (_current->child() != NULL) {
775 _current = _current->child();
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaUtils.java62 for (Component child : ((Container)c).getComponents()) {
63 enforceComponentOrientation(child, orientation);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDXMLPrinter.java305 DPattern child = p.getChild();
307 if (!(child instanceof DTextPattern)) {
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWWindowPeer.java578 for (Component child : ((Container)c).getComponents()) {
579 replaceSurfaceDataRecursively(child);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDragSourceContextPeer.java400 for (Long child : children) {
401 long win = findClientWindow(child);
H A DXWindow.java166 as a child of the netscape window. This netscape window is passed in as wid */
915 // X sends XCrossing to all hierarchy so if the edge of child equals to
916 // ancestor and mouse enters child, the ancestor will get an event too.
918 // the child can get java event itself, we skip it on ancestor.
921 XBaseWindow child = XToolkit.windowToXWindow(childWnd);
922 if (child != null && child instanceof XWindow &&
923 !child.isEventDisabled(xev))
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java401 Object child = elements.nextElement();
402 if (child instanceof Text) {
601 SyntaxTreeNode child = (SyntaxTreeNode)children.elementAt(i);
602 SyntaxTreeNode node = findStylesheet(child, href);
946 * until we have received all child elements of an unsupported element to
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DVariablePanel.java173 public int getIndexOfChild(SimpleTreeNode child) { return 0; }
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DDefaults.template487 //child of a JList. Rather, it is treated more as a direct component
794 for (Node child: children) {
795 child.update();
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContext.java1052 // Clone ctx to create the child context.
1053 DnsContext child = new DnsContext(ctx, fqdn);
1057 child, cname, ctx, child.environment, null);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java327 throw new SOAPExceptionImpl("Cannot add a SOAPFault as a child of " + this.getLocalName());
332 throw new SOAPExceptionImpl("Cannot add a Detail as a child of " + this.getLocalName());
344 throw new SOAPExceptionImpl("Cannot add SOAPFault as a child of a non-Empty SOAPBody");
429 SOAPElement child = (SOAPElement) eachChild.next();
430 if (child.getElementName().equals(name)) {
431 return child;
862 log.severe("SAAJ0107.impl.elem.child.not.single.text");
/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolder2.java251 // Get a child pidl relative to 'parent'
259 // has a continued ID list. Create a shell folder for this child
646 // Returns the next sequential child as a relative PIDL
655 // Returns the IShellFolder of a child from a parent IShellFolder
735 * Look for (possibly special) child folder by it's path
737 * @return The child shellfolder, or null if not found.
744 Win32ShellFolder2 child = null;
752 child = new Win32ShellFolder2(Win32ShellFolder2.this,
760 return child;

Completed in 114 milliseconds

<<1112