Searched refs:node (Results 101 - 125 of 510) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/back/
H A DeventHandler.c167 #define PRIVATE_DATA(node) \
168 (&(((EventHandlerRestricted_HandlerNode*)(void*)(node))->private_ehpd))
170 #define NEXT(node) (PRIVATE_DATA(node)->private_next)
171 #define PREV(node) (PRIVATE_DATA(node)->private_prev)
172 #define CHAIN(node) (PRIVATE_DATA(node)->private_chain)
173 #define HANDLER_FUNCTION(node) (PRIVATE_DATA(node)
190 insert(HandlerChain *chain, HandlerNode *node) argument
205 HandlerNode *node = chain->first; local
225 deinsert(HandlerNode *node) argument
249 HandlerNode *node; local
470 HandlerNode *node; local
640 HandlerNode *node; local
1307 freeHandler(HandlerNode *node) argument
1330 HandlerNode *node; local
1353 eventHandler_free(HandlerNode *node) argument
1374 HandlerNode *node; local
1398 HandlerNode *node; local
1418 HandlerNode *node; local
1591 HandlerNode *node = eventFilterRestricted_alloc(filterCount); local
1615 installHandler(HandlerNode *node, HandlerFunction func, jboolean external) argument
1647 HandlerNode *node; local
1709 eventHandler_installExternal(HandlerNode *node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DStepIterator.java35 * as "outer" and "inner". Every node from the outer iterator (the one
37 * After this initialization, every node from the inner iterator is
92 public DTMAxisIterator setStartNode(int node) { argument
94 // Set start node for left-hand iterator...
95 _source.setStartNode(_startNode = node);
97 // ... and get start node for right-hand iterator from left-hand,
113 for (int node;;) {
114 // Try to get another node from the right-hand iterator
115 if ((node = _iterator.next()) != END) {
116 return returnNode(node);
[all...]
H A DFilterIterator.java34 * simpler interface (only needs the node, no position, last, etc.)
36 * from the source after filtering them by calling filter.test(node).
48 * Reference to a filter object that to be applied to each node.
95 int node;
96 while ((node = _source.next()) != END) {
97 if (_filter.acceptNode(node, DTMFilter.SHOW_ALL) == DTMIterator.FILTER_ACCEPT) {
98 return returnNode(node);
104 public DTMAxisIterator setStartNode(int node) { argument
106 _source.setStartNode(_startNode = node);
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DConstantSetNode.java42 Node node = (Node)it.next();
50 void constrainComponent(Context ctx, Node node) { argument
51 if (node instanceof ConstantNode) {
52 node.constrain(ctx);
53 constantMap.put(name + "_" + ((ConstantNode) node).getName(), node.comment());
55 error("Expected 'Constant', got: " + node);
/openjdk7/langtools/test/tools/javac/
H A DT6855236.java73 public Object visitMethodInvocation(MethodInvocationTree node, Trees p) { argument
79 System.out.println("method select: " + node.getMethodSelect().toString());
80 for (ExpressionTree arg : node.getArguments()) {
83 return super.visitMethodInvocation(node, p);
87 public Object visitExpressionStatement(ExpressionStatementTree node, Trees p) { argument
88 ExpressionTree t = node.getExpression();
91 return super.visitExpressionStatement(node, p);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpMibTree.java46 * root oids of the supported MIBs. Each node is associated to a specific MIB.
73 TreeNode node= root.retrieveMatchingBranch(oid.longValue(), 0);
74 if (node == null)
77 if(node.getAgentMib() == null)
80 return node.getAgentMib();
86 TreeNode node = root.retrieveMatchingBranch(oid, 0);
87 if (node == null)
89 node.removeAgent(agent);
102 TreeNode node= root.retrieveMatchingBranch(oid, 0);
103 if (node
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMAxisIteratorBase.java34 /** The position of the last node within the iteration, as defined by XPath.
35 * Note that this is _not_ the node's handle within the DTM. Also, don't
40 /** The position of the current node within the iteration, as defined by XPath.
41 * Note that this is _not_ the node's handle within the DTM!
45 /** The position of the marked node within the iteration;
56 /** True if the start node should be considered part of the iteration.
71 * @return The root node of the iteration.
79 * @return A DTMAxisIterator which has been reset to the start node,
97 * Set the flag to include the start node in the iteration.
113 /** Returns the position of the last node withi
213 returnNode(final int node) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DDomPostInitAction.java39 * from a DOM node.
47 private final Node node; field in class:DomPostInitAction
50 DomPostInitAction(Node node, XMLSerializer serializer) { argument
51 this.node = node;
58 for( Node n=node; n!=null && n.getNodeType()==Node.ELEMENT_NODE; n=n.getParentNode() ) {
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4631471.java59 // create a new model from the root node
81 DefaultMutableTreeNode node = new DefaultMutableTreeNode("root");
98 node.add(first);
99 node.add(second);
100 node.add(third);
102 return node;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DAbstractBuilder.java97 * @param node the XML element that specifies which component to document.
100 protected void build(XMLNode node, Content contentTree) { argument
101 String component = node.name;
105 new Object[]{node, contentTree});
124 * @param node the XML element that specifies which components to document.
127 protected void buildChildren(XMLNode node, Content contentTree) { argument
128 for (XMLNode child : node.children)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DRangeImpl.java130 Node node;
131 for (node=fStartContainer; node != null;
132 node=node.getParentNode())
134 startV.addElement(node);
137 for (node=fEndContainer; node != null;
138 node=node
853 signalSplitData(Node node, Node newNode, int offset) argument
863 receiveSplitData(Node node, Node newNode, int offset) argument
887 deleteData(CharacterData node, int offset, int count) argument
898 receiveDeletedText(Node node, int offset, int count) argument
925 insertData(CharacterData node, int index, String insert) argument
936 receiveInsertedText(Node node, int index, int len) argument
958 receiveReplacedText(Node node) argument
975 insertedNodeFromDOM(Node node) argument
1016 removeNode(Node node) argument
1993 nextNode(Node node, boolean visitChildren) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DVariableHeightLayoutCache.java67 * The root node of the internal cache of nodes that have been shown.
69 * there may be one cached node for each path to a modeled node.
112 * Determines whether or not the root node from
115 * @param rootVisible true if the root node of the tree is to be displayed
119 * description: Whether or not the root node
183 TreeStateNode node = getNodeForPath(path, false, true);
185 if(node != null) {
186 node.makeVisible();
187 node
691 addMapping(TreeStateNode node) argument
698 removeMapping(TreeStateNode node) argument
1662 VisibleTreeStateNodeEnumeration(TreeStateNode node) argument
[all...]
H A DFixedHeightLayoutCache.java52 /** Root node. */
97 * Determines whether or not the root node from
100 * @param rootVisible true if the root node of the tree is to be displayed
175 * @param path a TreePath specifying a node
183 FHTreeStateNode node = getNodeForPath(path, true, false);
185 if(node != null)
186 return getBounds(node, -1, placeIn);
188 // node hasn't been created yet.
191 node = getNodeForPath(parentPath, true, false);
192 if (node !
579 addMapping(FHTreeStateNode node) argument
586 removeMapping(FHTreeStateNode node) argument
1456 protected FHTreeStateNode node; field in class:FixedHeightLayoutCache.SearchInfo
1489 VisibleFHTreeStateNodeEnumeration(FHTreeStateNode node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DTreeWalker.java270 private final void dispatachChars(Node node) argument
275 ((com.sun.org.apache.xml.internal.dtm.ref.dom2dtm.DOM2DTM.CharacterNodeHandler)m_contentHandler).characters(node);
279 String data = ((Text) node).getData();
285 * Start processing given node
288 * @param node Node to process
292 protected void startNode(Node node) throws org.xml.sax.SAXException argument
297 ((NodeConsumer) m_contentHandler).setOriginatingNode(node);
300 if (node instanceof Locator)
302 Locator loc = (Locator)node;
314 switch (node
456 endNode(Node node) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DModelNode.java39 * The general representation of a single node within a {@link com.sun.xml.internal.ws.policy.sourcemodel.PolicySourceModel} instance.
40 * The model node is created via factory methods of the {@link com.sun.xml.internal.ws.policy.sourcemodel.PolicySourceModel} instance.
49 * Policy source model node type enumeration
70 * Method checks the PSM state machine if the creation of new child of given type is plausible for a node element
112 // comon model node attributes
119 // attributes used only in 'POLICY_REFERENCE' model node
123 // attibutes used only in 'ASSERTION' or 'ASSERTION_PARAMETER_NODE' model node
127 * The factory method creates and initializes the POLICY model node and sets it's parent model reference to point to
132 * @return POLICY model node with the parent model reference initialized to the model supplied as an input parameter
168 * Factory method that creates new policy source model node a
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DNodeInfo.java45 * context node.
64 * <code>systemId</code> returns the system id of the node passed as
65 * argument. If a node set is passed as argument, the system id of
66 * the first node in the set is returned.
76 Node node = nodeList.item(0);
77 int nodeHandler = ((DTMNodeProxy)node).getDTMNodeNumber();
78 SourceLocator locator = ((DTMNodeProxy)node).getDTM()
89 * context node.
110 * <code>publicId</code> returns the public identifier of the node passed as
111 * argument. If a node se
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DHelperNodeList.java59 * @return node with inde i
80 * @param node
83 public void appendChild(Node node) throws IllegalArgumentException { argument
85 if (this.item(0).getParentNode() != node.getParentNode()) {
89 nodes.add(node);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DHierarchicalGraphLayout.java83 private N node; field in class:HierarchicalGraphLayout.VertexWrapper
88 public VertexWrapper(N node, UniversalGraph<N, E> graph) { argument
89 this.node = node;
103 Widget w = graph.getScene().findWidget(node);
112 Widget w = graph.getScene().findWidget(node);
121 HierarchicalGraphLayout.this.setResolvedNodeLocation(graph, node, p);
131 return node.toString().compareTo(vw.node.toString());
145 for (N node
[all...]
/openjdk7/jdk/test/java/util/prefs/
H A DRemoveReadOnlyNode.java28 * nodes is readonly on underlying filesystem when node is
42 Preferences node1 = root.node("node1");
43 Preferences node1A = node1.node("node1A");
44 Preferences node1B = node1.node("node1B");
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTM.java59 * tree. You can wrap a DOM2DTM around a specific node and its subtree
77 /** The current position in the DOM tree. Last node examined for
92 synthesis of the implied xml: namespace declaration node. */
100 /** The node objects. The instance part of the handle indexes
101 * directly into this vector. Each DTM node may actually be
104 * single DTM Text node); this table points only to the first in
109 * Construct a DOM2DTM object from a DOM node.
135 // Document node. If it's an Element node, we need to immediately
139 // (If it's an EntityReference node, w
183 addNode(Node node, int parentIndex, int previousSibling, int forceNodeType) argument
665 getHandleFromNode(Node node) argument
704 getHandleOfNode(Node node) argument
917 getNodeData(Node node, FastStringBuffer buf) argument
1656 dispatchNodeData(Node node, org.xml.sax.ContentHandler ch, int depth) argument
1738 characters(Node node) argument
1760 getSourceLocatorFor(int node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DTreeWalker.java239 private final void dispatachChars(Node node) argument
244 this.m_Serializer.characters(node);
248 String data = ((Text) node).getData();
254 * Start processing given node
257 * @param node Node to process
261 protected void startNode(Node node) throws org.xml.sax.SAXException argument
270 // ((NodeConsumer) m_contentHandler).setOriginatingNode(node);
274 if (node instanceof Locator)
276 Locator loc = (Locator)node;
288 switch (node
451 endNode(Node node) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeModel.java51 public void setRoot(SimpleTreeNode node) { argument
52 if (node != null) {
53 root = node;
72 public boolean isLeaf(Object node) { argument
73 if (node == null) {
76 return ((SimpleTreeNode) node).isLeaf();
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DFunction.java38 public Function(final Node node, final Framework parent) { argument
39 this(node, getAttr(node, "name"), parent);
42 public Function(final Node node, final String name, final Framework parent) { argument
45 this.variadic = "true".equals(getAttr(node, "variadic"));
50 final NodeList children = node.getChildNodes();
H A DMethod.java40 public Method(final Node node, final Framework fw) { argument
41 super(node, getAttr(node, "selector"), fw);
43 this.isClassMethod = "true".equals(getAttr(node, "class_method"));
44 this.ignore = "true".equals(getAttr(node, "ignore"));
45 this.suggestion = getAttr(node, "suggestion");
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DCMBuilder.java132 CMNode node = useRepeatingLeafNodes(particle) ? buildCompactSyntaxTree(particle) : buildSyntaxTree(particle, true);
133 if (node == null)
136 return new XSDFACM(node, fLeafCount);
144 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
202 // to create a zero-or-one (optional) node for the non-empty
217 // 4. make sure each leaf node (XSCMLeaf) has a distinct position
218 private CMNode expandContentModel(CMNode node, argument
224 nodeRet = node;
228 nodeRet = fNodeFactory.getCMUniOpNode(XSParticleDecl.PARTICLE_ZERO_OR_ONE, node);
232 nodeRet = fNodeFactory.getCMUniOpNode(XSParticleDecl.PARTICLE_ZERO_OR_MORE, node);
286 multiNodes(CMNode node, int num, boolean copyFirst) argument
300 copyNode(CMNode node) argument
[all...]

Completed in 335 milliseconds

1234567891011>>