Searched refs:leaf (Results 1 - 25 of 54) sorted by relevance

123

/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/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...]
H A DCMBuilder.java144 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
155 // leaf nodes
156 // REVISIT: Make a clone of the leaf particle, so that if there
158 // leaf particles for the same element or wildcard decl.
217 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
259 // all leaf nodes have distinct position
299 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
316 // for element/wildcard (leaf), make a new leaf node,
320 XSCMLeaf leaf
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DmutexLocker.cpp182 def(STS_init_lock , Mutex, leaf, true );
187 def(FullGCCount_lock , Monitor, leaf, true ); // in support of ExplicitGCInvokesConcurrent
191 def(CMRegionStack_lock , Mutex, leaf, true );
200 def(FreeList_lock , Mutex, leaf , true );
201 def(SecondaryFreeList_lock , Monitor, leaf , true );
202 def(OldSets_lock , Mutex , leaf , true );
203 def(RootRegionScan_lock , Monitor, leaf , true );
204 def(MMUTracker_lock , Mutex , leaf , true );
208 def(ParGCRareEvent_lock , Mutex , leaf , true );
209 def(DerivedPointerTableGC_lock , Mutex, leaf, tru
[all...]
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/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/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/make/tools/src/build/tools/javazic/
H A DMappings.java171 String leaf = realid;
172 while (aliases.get(leaf) != null) {
173 leaf = aliases.get(leaf);
175 if (!realid.equals(leaf)) {
176 newMap.put(key, leaf);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DBuiltinLeafInfoImpl.java93 for( RuntimeBuiltinLeafInfoImpl<?> leaf : RuntimeBuiltinLeafInfoImpl.builtinBeanInfos ) {
94 TypeT t = nav.ref(leaf.getClazz());
95 leaves.put( t, new BuiltinLeafInfoImpl<TypeT,ClassDeclT>(t,leaf.getTypeNames()) );
/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/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/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
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DPlainDocument.java268 Element leaf = line.getElement(line.getElementIndex(offset));
269 if (Utilities.isComposedTextElement(leaf)) {
287 // which contains leaf elements of the composed text and the text
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java3143 // case LF_FIELDLIST: throw new COFFException("Should not see LF_FIELDLIST leaf");
3205 case LF_VARSTRING: throw new RuntimeException("Unexpected numeric leaf " + typeStringLeaf +
3208 throw new COFFException("Unrecognized leaf " + typeStringLeaf + " in type string at offset " +
3238 int leaf = readShort() & 0xFFFF;
3239 if (leaf < 0x8000) return 2;
3240 switch (leaf) {
3261 throw new DebugVC50WrongNumericTypeException("Illegal numeric leaf index " + leaf +
3268 int leaf = readShort() & 0xFFFF;
3269 if (leaf <
[all...]
H A DTestDebugInfo.java173 int leaf = iter.typeStringLeaf() & 0xFFFF;
174 switch (leaf) {
258 default: System.out.print("(Unknown leaf " + leaf + ")");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DModel.java344 CBuiltinLeafInfo leaf = CBuiltinLeafInfo.LEAVES.get(type);
345 if(leaf!=null) return leaf;
/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/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...]

Completed in 105 milliseconds

123