Searched defs:parent (Results 126 - 150 of 595) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTextFieldPeer.java86 native void create(WComponentPeer parent); argument
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java91 parent = null;
95 parent = p;
117 return parent;
128 next = next.parent;
142 private TreePath parent; field in class:TreePath
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DVariableGridLayout.java64 public void layoutContainer(Container parent) { argument
65 Insets insets = parent.getInsets();
66 int ncomponents = parent.getComponentCount();
84 int nComps = parent.getComponentCount();
92 Component c = parent.getComponent(row * ncols + col);
100 JComponent c = (JComponent)parent.getComponent(row * ncols + col);
117 if (nFills > 0 && y < parent.getHeight()) {
119 int hAdd = (parent.getHeight() - y) / nFills;
125 hAdd = parent.getHeight() - (y+hAdded);
129 Component c = parent
197 preferredLayoutSize(Container parent) argument
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DMiscTests.java54 public MiscTests(Group parent, String nodeName, String description) { argument
55 super(parent, nodeName, description);
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DSmallObjTrees.java41 Object parent, left, right; field in class:SmallObjTrees.Node
43 Node(Object parent, int depth) { argument
44 this.parent = parent;
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DSingleClassLoader.java36 asked to load a class, this loader first delegates to its parent as
40 constructor that simply calls its parent's no-arg constructor. This
41 means that the parent must have a public or protected no-arg
46 ClassLoader parent) {
47 super(parent);
45 SingleClassLoader(String singleClassName, Class superclass, ClassLoader parent) argument
/openjdk7/jdk/test/javax/swing/regtesthelpers/
H A DUtil.java128 public static Component findSubComponent(Component parent, String className) { argument
129 String parentClassName = parent.getClass().getName();
132 return parent;
135 if (parent instanceof Container) {
136 for (Component child : ((Container) parent).getComponents()) {
/openjdk7/jdk/test/javax/swing/text/WrappedPlainView/6857057/
H A DStubLeafElement.java29 Element parent; field in class:StubLeafElement
32 public StubLeafElement(String context, Element parent, int position) { argument
34 this.parent = parent;
47 return parent;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DAttributeValueTemplate.java56 SyntaxTreeNode parent)
58 setParent(parent);
65 reportError(parent, parser,
55 AttributeValueTemplate(String value, Parser parser, SyntaxTreeNode parent) argument
H A DLiteralAttribute.java55 SyntaxTreeNode parent)
58 setParent(parent);
83 // push attribute name - namespace prefix set by parent node
90 SyntaxTreeNode parent = getParent();
91 if (parent instanceof LiteralElement
92 && ((LiteralElement)parent).allAttributesUnique()) {
96 ElemDesc elemDesc = ((LiteralElement)parent).getElemDesc();
54 LiteralAttribute(String name, String value, Parser parser, SyntaxTreeNode parent) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DContextImpl.java56 public ContextImpl(Context parent) argument
66 public Context parent() method in class:ContextImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/
H A DMonitoredObjectImpl.java46 private MonitoredObject parent = null; field in class:MonitoredObjectImpl
85 return parent;
89 parent = p;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBlockSym.java33 private BlockSym parent; field in class:BasicBlockSym
40 public BasicBlockSym(BlockSym parent, long length, Address addr, String name) { argument
42 this.parent = parent;
49 public BlockSym getParent() { return parent; }
73 parent = (BlockSym) db.resolveSym(this, parent, listener, "resolving parent of block");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeModel.java64 public Object getChild(Object parent, int index) { argument
65 return ((SimpleTreeNode) parent).getChild(index);
68 public int getChildCount(Object parent) { argument
69 return ((SimpleTreeNode) parent).getChildCount();
84 public int getIndexOfChild(Object parent, Object child) { argument
85 return ((SimpleTreeNode) parent).getIndexOfChild((SimpleTreeNode) child);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DRBNode.java35 private RBNode parent; field in class:RBNode
51 (parent, left child, right child). It also does not need to copy
72 public RBNode getParent() { return parent; }
73 public void setParent(RBNode parent) { this.parent = parent; } argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DInputMap.java41 * An <code>InputMap</code> can have a parent
59 private InputMap parent; field in class:InputMap
63 * Creates an <code>InputMap</code> with no parent and no mappings.
69 * Sets this <code>InputMap</code>'s parent.
71 * @param map the <code>InputMap</code> that is the parent of this one
74 this.parent = map;
78 * Gets this <code>InputMap</code>'s parent.
80 * @return map the <code>InputMap</code> that is the parent of this one,
81 * or null if this <code>InputMap</code> has no parent
84 return parent;
[all...]
H A DPopup.java68 * <code>Popup</code> will parent the <code>Component</code> the
70 * A null <code>owner</code> implies there is no valid parent.
138 // If our parent is a DefaultFrame, we need to dispose it, too.
183 * Returns the <code>Window</code> to use as the parent of the
203 * Creates the Component to use as the parent of the <code>Popup</code>.
228 HeavyWeightWindow(Window parent) { argument
229 super(parent);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElementIterator.java338 * Returns the last child of <code>parent</code> that is a leaf. If the
341 private Element getDeepestLeaf(Element parent) { argument
342 if (parent.isLeaf()) {
343 return parent;
345 int childCount = parent.getElementCount();
347 return parent;
349 return getDeepestLeaf(parent.getElement(childCount - 1));
H A DKeymap.java70 * to resolve through the parent keymap, if one is set.
131 * Fetches the parent keymap used to resolve key-bindings.
138 * Sets the parent keymap, which will be used to
143 * @param parent the parent keymap
145 public void setResolveParent(Keymap parent); argument
H A DStyledDocument.java40 * will override an attribute specified in the parent.
49 * @param parent the parent style. This may be null if unspecified
53 public Style addStyle(String nm, Style parent); argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DParagraphView.java58 * Establishes the parent view for this view. This is
60 * parent view is functioning properly.
70 * @param parent the new parent, or null if the view is
71 * being removed from a parent it was previously added
74 public void setParent(View parent) { argument
75 super.setParent(parent);
76 if (parent != null) {
246 * the parent may choose to resize or break the view
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreePath.java36 * the array of parent directories and the name of the file. The path
85 /** Path representing the parent, null if lastPathComponent represents
129 * Creates a {@code TreePath} with the specified parent and element.
131 * @param parent the path to the parent, or {@code null} to indicate
137 protected TreePath(TreePath parent, Object lastPathComponent) { argument
140 parentPath = parent;
333 * Returns the {@code TreePath} of the parent. A return value of
336 * @return the parent path
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DTransformService.java362 * @param parent a mechanism-specific structure containing the parent
366 * @throws ClassCastException if the type of <code>parent</code> or
369 * @throws NullPointerException if <code>parent</code> is <code>null</code>
373 (XMLStructure parent, XMLCryptoContext context)
380 * @param parent a mechanism-specific structure containing the parent
384 * @throws ClassCastException if the type of <code>parent</code> or
387 * @throws NullPointerException if <code>parent</code> is <code>null</code>
391 public abstract void init(XMLStructure parent, XMLCryptoContex argument
372 marshalParams(XMLStructure parent, XMLCryptoContext context) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DApacheCanonicalizer.java71 public void init(XMLStructure parent, XMLCryptoContext context) argument
78 ((javax.xml.crypto.dom.DOMStructure) parent).getNode();
82 public void marshalParams(XMLStructure parent, XMLCryptoContext context) argument
89 ((javax.xml.crypto.dom.DOMStructure) parent).getNode();
H A DApacheTransform.java71 public void init(XMLStructure parent, XMLCryptoContext context) argument
78 ((javax.xml.crypto.dom.DOMStructure) parent).getNode();
82 public void marshalParams(XMLStructure parent, XMLCryptoContext context) argument
89 ((javax.xml.crypto.dom.DOMStructure) parent).getNode();

Completed in 54 milliseconds

1234567891011>>