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

123

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMRepeatingLeaf.java25 * A compound content model leaf node which carries occurence information.
36 public XSCMRepeatingLeaf(int type, Object leaf, argument
38 super(type, leaf, id, position);
H A DXSCMLeaf.java28 * Content model leaf node.
41 /** This is the leaf: element decl or wildcard decl. */
51 * numbers each leaf sequentially. If its -1, that means its an
60 /** Constructs a content model leaf. */
61 public XSCMLeaf(int type, Object leaf, int id, int position) { argument
65 fLeaf = leaf;
H A DCMNodeFactory.java95 public CMNode getCMLeafNode(int type, Object leaf, int id, int position) { argument
96 return new XSCMLeaf(type, leaf, id, position) ;
99 public CMNode getCMRepeatingLeafNode(int type, Object leaf, argument
102 return new XSCMRepeatingLeaf(type, leaf, minOccurs, maxOccurs, id, position);
H A DXSDFACM.java98 * non-epsilon leaf node.) This is only used during the building of
112 * The count of leaf nodes. This is an important number that set some
118 * An array of non-epsilon leaf nodes, which is used during the DFA
123 /** Array mapping ANY types to the leaf list. */
149 public Occurence (XSCMRepeatingLeaf leaf, int elemIndex) { argument
150 minOccurs = leaf.getMinOccurs();
151 maxOccurs = leaf.getMaxOccurs();
519 // Note that, during this operation, we set each non-epsilon leaf
543 // and counted as a non-epsilon leaf node. It could not be handled
558 // work now that we know the leaf coun
[all...]
H A DCMBuilder.java144 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
176 // leaf nodes
177 // REVISIT: Make a clone of the leaf particle, so that if there
179 // leaf particles for the same element or wildcard decl.
244 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
286 // all leaf nodes have distinct position
326 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
343 // for element/wildcard (leaf), make a new leaf node,
347 XSCMLeaf leaf
[all...]
/openjdk9/hotspot/src/share/vm/runtime/
H A DmutexLocker.cpp177 def(STS_lock , PaddedMonitor, leaf, true, Monitor::_safepoint_check_never);
180 def(FullGCCount_lock , PaddedMonitor, leaf, true, Monitor::_safepoint_check_never); // in support of ExplicitGCInvokesConcurrent
185 def(SATB_Q_CBL_mon , PaddedMonitor, leaf - 1 , true, Monitor::_safepoint_check_never);
186 def(Shared_SATB_Q_lock , PaddedMutex , leaf - 1 , true, Monitor::_safepoint_check_never);
189 def(DirtyCardQ_CBL_mon , PaddedMonitor, leaf - 1 , true, Monitor::_safepoint_check_never);
190 def(Shared_DirtyCardQ_lock , PaddedMutex , leaf - 1 , true, Monitor::_safepoint_check_never);
192 def(FreeList_lock , PaddedMutex , leaf , true, Monitor::_safepoint_check_never);
193 def(SecondaryFreeList_lock , PaddedMonitor, leaf , true, Monitor::_safepoint_check_never);
194 def(OldSets_lock , PaddedMutex , leaf , true, Monitor::_safepoint_check_never);
195 def(RootRegionScan_lock , PaddedMonitor, leaf , tru
[all...]
H A Dmutex.hpp102 // The rank named "leaf" is probably historical (and should
103 // be changed) -- mutexes of this rank aren't really leaf mutexes
109 leaf = suspend_resume + 2, enumerator in enum:Monitor::lock_types
110 safepoint = leaf + 10,
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/tree/
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 * @param leaf whether node is a lead node
81 boolean leaf, int row, boolean hasFocus);
79 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
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 DDefaultTreeCellEditor.java204 boolean leaf, int row) {
207 determineOffset(tree, value, isSelected, expanded, leaf, row);
213 isSelected, expanded,leaf, row);
268 boolean leaf = treeModel.isLeaf(value);
270 expanded, leaf, lastRow);
486 * @param leaf leaf status
491 boolean leaf, int row) {
493 if(leaf)
201 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
489 determineOffset(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
H A DDefaultTreeCellRenderer.java140 /** Icon used to show non-leaf nodes that aren't expanded. */
143 /** Icon used to show leaf nodes. */
146 /** Icon used to show non-leaf nodes that are expanded. */
243 * represent non-leaf nodes that are expanded.
246 * represent non-leaf nodes that are expanded.
254 * represent non-leaf nodes that are not expanded.
257 * represent non-leaf nodes that are not expanded.
265 * represent leaf nodes.
268 * represent leaf nodes.
275 * Sets the icon used to represent non-leaf node
473 getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
[all...]
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/source/util/
H A DTreePath.java114 leaf = tree;
125 * Returns the leaf node for this path.
126 * @return the leaf node
129 return leaf;
153 Tree t = next.leaf;
168 private Tree leaf; field in class:TreePath
H A DDocTreePath.java104 this.leaf = t;
120 leaf = t;
140 * Returns the leaf node for this path.
144 return leaf;
165 DocTree t = next.leaf;
181 private final DocTree leaf; field in class:DocTreePath
/openjdk9/jdk/test/javax/swing/JTree/6567433/
H A DUpdateUIRecursionTest.java92 boolean selected, boolean expanded, boolean leaf,
95 return renderer.getTreeCellRendererComponent(tree, value, leaf,
96 expanded, leaf, row, hasFocus);
91 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk9/jdk/test/sun/util/calendar/zi/
H A DMappings.java169 String leaf = realid;
170 while (aliases.get(leaf) != null) {
171 leaf = aliases.get(leaf);
173 if (!realid.equals(leaf)) {
174 newMap.put(key, leaf);
/openjdk9/jaxws/src/java.xml.bind/share/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()) );
/openjdk9/jdk/src/jdk.jconsole/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
/openjdk9/jdk/src/demo/share/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
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTreeUI.java209 * is set based on on leaf and expanded.
214 boolean leaf, int row,
217 expanded, leaf, row,
222 if (leaf) {
232 if (leaf) {
211 getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk9/jdk/test/javax/swing/JTree/4633594/
H A DJTreeFocusTest.java198 boolean leaf, int row,
205 expanded, leaf, row,
218 boolean leaf, int row) {
224 expanded, leaf, row);
195 getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
215 getTreeCellEditorComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row) argument
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/
H A DDefaultCellEditor.java254 boolean leaf, int row) {
256 expanded, leaf, row, false);
251 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
/openjdk9/jdk/test/javax/swing/plaf/basic/BasicTreeUI/8023474/
H A Dbug8023474.java124 boolean expanded, boolean leaf, int row) {
166 boolean leaf, int row, boolean hasFocus) {
123 getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) argument
165 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk9/jdk/src/java.base/share/classes/java/util/stream/
H A DNodes.java312 * output elements can be placed into the array concurrently by leaf
350 * output elements can be placed into the array concurrently by leaf
388 * output elements can be placed into the array concurrently by leaf
426 * output elements can be placed into the array concurrently by leaf
464 * and leaf node elements are placed in the array concurrently by leaf tasks
491 * is {@link Node#count()}. Then the node tree is traversed and leaf node
492 * elements are placed in the array concurrently by leaf tasks at the
517 * is {@link Node#count()}. Then the node tree is traversed and leaf node
518 * elements are placed in the array concurrently by leaf task
[all...]
/openjdk9/hotspot/make/lib/
H A DLib-jdk.hotspot.agent.gmk73 -Damd64 -D_GNU_SOURCE -mno-omit-leaf-frame-pointer \
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DIRNode.java212 for (IRNode leaf : child.getDeviantBlocks(Math.max(child.countDepth(), maxDepth + 1))) {
215 leaf.removeSelf();

Completed in 290 milliseconds

123