Searched defs:leaf (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCReturnInstruction.java32 private final boolean leaf; field in class:SPARCReturnInstruction
34 public SPARCReturnInstruction(SPARCRegisterIndirectAddress addr, SPARCRegister rd, boolean leaf) { argument
35 super(leaf? "retl" : "ret", addr, rd);
36 this.leaf = leaf;
40 return leaf;
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreeCellEditor.java58 * @param leaf true if the node is a leaf node
64 boolean leaf, int row);
62 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
H A DTreeCellRenderer.java48 * expanded and if <code>leaf</code> is true the node represents a
49 * leaf and if <code>hasFocus</code> is true the node currently has
74 boolean leaf, int row, boolean hasFocus);
72 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
H A DDefaultTreeCellEditor.java207 boolean leaf, int row) {
210 determineOffset(tree, value, isSelected, expanded, leaf, row);
216 isSelected, expanded,leaf, row);
271 boolean leaf = treeModel.isLeaf(value);
273 expanded, leaf, lastRow);
481 boolean leaf, int row) {
483 if(leaf)
204 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
479 determineOffset(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
H A DDefaultTreeCellRenderer.java133 /** Icon used to show non-leaf nodes that aren't expanded. */
136 /** Icon used to show leaf nodes. */
139 /** Icon used to show non-leaf nodes that are expanded. */
236 * represent non-leaf nodes that are expanded.
244 * represent non-leaf nodes that are not expanded.
252 * represent leaf nodes.
259 * Sets the icon used to represent non-leaf nodes that are expanded.
266 * Returns the icon used to represent non-leaf nodes that are expanded.
273 * Sets the icon used to represent non-leaf nodes that are not expanded.
280 * Returns the icon used to represent non-leaf node
424 getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTreeRenderer.java39 boolean leaf, int row, boolean hasFocus) {
41 tree, value, selected, expanded, leaf, row, hasFocus);
37 getTreeCellRendererComponent( JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleTreeCellRenderer.java98 boolean leaf, int row,
101 expanded, leaf, row, hasFocus);
111 } else if (!leaf) {
96 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMRepeatingLeaf.java25 * A compound content model leaf node which carries occurence information.
37 public XSCMRepeatingLeaf(int type, Object leaf, argument
39 super(type, leaf, id, position);
H A DXSCMLeaf.java27 * Content model leaf node.
40 /** This is the leaf: element decl or wildcard decl. */
50 * numbers each leaf sequentially. If its -1, that means its an
59 /** Constructs a content model leaf. */
60 public XSCMLeaf(int type, Object leaf, int id, int position) { argument
64 fLeaf = leaf;
H A DCMNodeFactory.java92 public CMNode getCMLeafNode(int type, Object leaf, int id, int position) { argument
93 return new XSCMLeaf(type, leaf, id, position) ;
96 public CMNode getCMRepeatingLeafNode(int type, Object leaf, argument
99 return new XSCMRepeatingLeaf(type, leaf, minOccurs, maxOccurs, id, position);
H A DXSDFACM.java101 * non-epsilon leaf node.) This is only used during the building of
115 * The count of leaf nodes. This is an important number that set some
121 * An array of non-epsilon leaf nodes, which is used during the DFA
126 /** Array mapping ANY types to the leaf list. */
151 public Occurence (XSCMRepeatingLeaf leaf, int elemIndex) { argument
152 minOccurs = leaf.getMinOccurs();
153 maxOccurs = leaf.getMaxOccurs();
518 // Note that, during this operation, we set each non-epsilon leaf
542 // and counted as a non-epsilon leaf node. It could not be handled
557 // work now that we know the leaf coun
[all...]
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java97 leaf = t;
107 * Get the leaf node for this path.
110 return leaf;
127 Tree t = next.leaf;
141 private Tree leaf; field in class:TreePath
/openjdk7/jdk/test/javax/swing/JTree/4330357/
H A Dbug4330357.java181 boolean leaf, int row) {
178 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultCellEditor.java253 boolean leaf, int row) {
255 expanded, leaf, row, false);
250 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
H A DJMenu.java1302 * @param leaf the leaf node from which to start building up the array
1305 private MenuElement[] buildMenuElementArray(JMenu leaf) { argument
1307 Component current = leaf.getPopupMenu();
H A DJTree.java54 * An <i>expanded</i> node is a non-leaf node (as identified by
385 * <li>The root is a leaf node
558 * The default model used by the tree defines a leaf node as any node
571 * By default, the tree defines a leaf node as any node without
588 * tree defines a leaf node as any node without children.
605 * a leaf node as any node without children.
621 * By default, the tree defines a leaf node as any node without children.
634 * leaf node in the specified manner.
638 * leaf node; if true, only nodes that do not allow
639 * children are leaf node
1589 convertValueToText(Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTreeUI.java206 * is set based on on leaf and expanded.
211 boolean leaf, int row,
214 expanded, leaf, row,
219 if (leaf) {
229 if (leaf) {
208 getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dmutex.hpp100 // The rank named "leaf" is probably historical (and should
101 // be changed) -- mutexes of this rank aren't really leaf mutexes
107 leaf = suspend_resume + 2, enumerator in enum:Monitor::lock_types
108 safepoint = leaf + 10,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.java354 * Makes a copy of a tree, noting the value resulting from copying a particular leaf.
364 public <T extends JCTree> T copy(T t, JCTree leaf) { argument
365 T t2 = super.copy(t, leaf);
366 if (t == leaf)
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNCtx.java719 * @exception NotFound No objects under the name. If leaf
731 // If leaf is the one missing, return success
744 private boolean leafNotFound(NotFound e, NameComponent leaf) { argument
749 // the leaf (e.g. aa/aa/aa, which one is missing?)
754 (rest=e.rest_of_name[0]).id.equals(leaf.id) &&
755 (rest.kind == leaf.kind ||
756 (rest.kind != null && rest.kind.equals(leaf.kind)));
950 // If leaf is the one missing, return success
956 return; // leaf missing OK
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java702 boolean leaf, int row,
713 expanded, leaf, row, hasFocus);
699 getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaTreeTraverser.java344 boolean selected, boolean expanded, boolean leaf, int row,
343 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp2441 // pre_orders. Returns the leaf of the merged branch.
2443 // Sort is (looking from leaf towards the root)
2447 Loop* leaf = this; local
2449 Loop* current = leaf;
2455 return leaf; // Already in list
2471 leaf = lp;
2476 return leaf;
/openjdk7/hotspot/src/share/vm/opto/
H A Dmatcher.cpp1577 MachNode* Matcher::find_shared_node(Node* leaf, uint rule) { argument
1578 if (!leaf->is_Con() && !leaf->is_DecodeN()) return NULL;
1581 if (_shared_nodes.Size() <= leaf->_idx) return NULL;
1582 MachNode* last = (MachNode*)_shared_nodes.at(leaf->_idx);
1585 if (leaf->is_DecodeN())
1641 Node *leaf = s->_leaf; local
1647 mach->add_req( leaf->in(0) ); // Set initial control
1665 if (leaf->is_Mem()) {
1666 m = leaf;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java1485 // Draw icons if not a leaf and either hasn't been loaded,
2241 * the node at <code>row</code> does not represent a leaf.
2404 * @return true if the node at <code>row</code> is a leaf.
3224 boolean leaf = model.isLeaf(node);
3225 String label = getDisplayString(path, true, leaf);
3249 String getDisplayString(TreePath path, boolean selected, boolean leaf) { argument
3254 leaf, row, hasFocus);

Completed in 280 milliseconds

12