Searched refs:node (Results 126 - 150 of 510) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java62 * tree. The source node and its children are appended as children
63 * of the destination node.
69 // get node factory
81 // copy this node
82 Node node = null;
86 node = factory.createCDATASection(place.getNodeValue());
90 node = factory.createComment(place.getNodeValue());
95 node = element;
110 node = factory.createEntityReference(place.getNodeName());
114 node
261 getNextSiblingElement(Node node) argument
278 getNextVisibleSiblingElement(Node node) argument
296 getNextVisibleSiblingElement(Node node, Hashtable hiddenNodes) argument
314 setHidden(Node node) argument
322 setHidden(Node node, Hashtable hiddenNodes) argument
332 setVisible(Node node) argument
340 setVisible(Node node, Hashtable hiddenNodes) argument
350 isHidden(Node node) argument
359 isHidden(Node node, Hashtable hiddenNodes) argument
407 getNextSiblingElement(Node node, String elemName) argument
470 getNextSiblingElementNS(Node node, String uri, String localpart) argument
534 getNextSiblingElement(Node node, String elemNames[]) argument
603 getNextSiblingElementNS(Node node, String[][] elemNames) argument
685 getNextSiblingElement(Node node, String elemName, String attrName, String attrValue) argument
717 getChildText(Node node) argument
744 getName(Node node) argument
751 getLocalName(Node node) argument
764 getDocument(Node node) argument
819 getPrefix(Node node) argument
824 getNamespaceURI(Node node) argument
829 getAnnotation(Node node) argument
837 getSyntheticAnnotation(Node node) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DPreferenceChangeEvent.java31 * An event emitted by a <tt>Preferences</tt> node to indicate that
64 * @param node The Preferences node that emitted the event.
69 public PreferenceChangeEvent(Preferences node, String key, argument
71 super(node);
77 * Returns the preference node that emitted the event.
79 * @return The preference node that emitted the event.
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DReturnValue.java34 public ReturnValue(final Node node, final Function parent) { argument
35 super(node, parent);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DAbstractMemberBuilder.java70 * @param node the XML element that specifies which components to document.
74 public void build(XMLNode node, Content contentTree) { argument
76 super.build(node, contentTree);
H A DAnnotationTypeRequiredMemberBuilder.java146 * @param node the XML element that specifies which components to document
149 public void buildAnnotationTypeRequiredMember(XMLNode node, Content memberDetailsTree) { argument
150 buildAnnotationTypeMember(node, memberDetailsTree);
156 * @param node the XML element that specifies which components to document
159 public void buildAnnotationTypeMember(XMLNode node, Content memberDetailsTree) { argument
172 buildChildren(node, annotationDocTree);
182 * @param node the XML element that specifies which components to document
185 public void buildSignature(XMLNode node, Content annotationDocTree) { argument
193 * @param node the XML element that specifies which components to document
196 public void buildDeprecationInfo(XMLNode node, Conten argument
208 buildMemberComments(XMLNode node, Content annotationDocTree) argument
221 buildTagInfo(XMLNode node, Content annotationDocTree) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPolicyNodeImpl.java55 // every node has one parent, and zero or more children
73 * parent in the Policy Tree to this node. If null, this is the
75 * for this node, as found in the certificate. It also takes a boolean
76 * argument specifying whether this node is being created as a result
80 * node is the tree's root node
81 * @param validPolicy a String representing this node's valid policy OID
87 * node was generated by a policy mapping
125 * Alternate constructor which makes a new node with the policy data
128 * @param parent a PolicyNode that's the new parent of the node, o
132 PolicyNodeImpl(PolicyNodeImpl parent, PolicyNodeImpl node) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmThreadingMeta.java99 return new SnmpInt(node.getJvmThreadCpuTimeMonitoring());
102 return new SnmpInt(node.getJvmThreadContentionMonitoring());
105 return new SnmpCounter64(node.getJvmThreadTotalStartedCount());
108 return new SnmpCounter(node.getJvmThreadPeakCount());
111 return new SnmpGauge(node.getJvmThreadDaemonCount());
114 return new SnmpGauge(node.getJvmThreadCount());
121 return new SnmpCounter64(node.getJvmThreadPeakCountReset());
138 node.setJvmThreadCpuTimeMonitoring( new EnumJvmThreadCpuTimeMonitoring (((SnmpInt)x).toInteger()));
142 return new SnmpInt(node.getJvmThreadCpuTimeMonitoring());
150 node
451 protected JvmThreadingMBean node; field in class:JvmThreadingMeta
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSetDTM.java147 Node node;
150 while (null != (node = iterator.nextNode()))
152 int handle = xctxt.getDTMHandleFromNode(node);
172 Node node = nodeList.item(i);
173 int handle = xctxt.getDTMHandleFromNode(node);
183 * @param node Single node to be added to the new set.
185 public NodeSetDTM(int node, DTMManager dtmManager) argument
191 addNode(node);
196 * a node (th
794 addNodeInDocOrder(int node, boolean test, XPathContext support) argument
869 addNodeInDocOrder(int node, XPathContext support) argument
1010 setElementAt(int node, int index) argument
1027 setItem(int node, int index) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DEventRequestImpl.c40 readAndSetFilters(JNIEnv *env, PacketInputStream *in, HandlerNode *node, argument
62 eventFilter_setConditionalFilter(node, i, exprID));
72 eventFilter_setCountFilter(node, i, count));
82 eventFilter_setThreadOnlyFilter(node, i, thread));
105 eventFilter_setLocationOnlyFilter(node, i, clazz, method, location));
119 eventFilter_setFieldOnlyFilter(node, i, clazz, field));
129 eventFilter_setClassOnlyFilter(node, i, clazz));
147 eventFilter_setExceptionOnlyFilter(node, i,
158 eventFilter_setInstanceOnlyFilter(node, i, instance));
168 eventFilter_setClassMatchFilter(node,
234 HandlerNode *node; local
[all...]
H A DeventHandlerRestricted.h35 HandlerNode *node,
45 * These three components are stored sequentially within the node.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMValidatorHelper.java145 /** Root node. **/
175 Node node = domSource.getNode();
176 fRoot = node;
177 if (node != null) {
186 // regardless of what type of node this is, fire start and end document events
187 setupEntityMap((node.getNodeType() == Node.DOCUMENT_NODE) ? (Document) node : node.getOwnerDocument());
190 validate(node);
202 //fCurrentElement = null; -- keep the reference to support current-element-node propert
239 validate(Node node) argument
268 beginNode(Node node) argument
337 finishNode(Node node) argument
400 fillQName(QName toFill, Node node) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/graph/
H A DGraphImpl.java61 Node node = (Node)obj ;
66 nodeToData.put( node, nd ) ;
86 public NodeData getNodeData( Node node )
88 return (NodeData)nodeToData.get( node ) ;
93 // Clear every node
104 void visit( Graph graph, Node node, NodeData nd ) ; argument
107 // This visits every node in the graph exactly once. A
114 // Repeat the traversal until every node has been visited. Since
115 // it takes one pass to determine whether or not each node has
125 // Visit each node i
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNode.java54 Node node = (Node)it.next();
55 if (node instanceof CommentNode) {
57 commentList.add(((CommentNode)node).text());
59 node.parent = this;
60 node.parentAndExtractComments();
67 Node node = (Node)it.next();
68 node.prune();
75 Node node = (Node)it.next();
76 constrainComponent(ctx, node);
80 void constrainComponent(Context ctx, Node node) { argument
[all...]
H A DCommandSetNode.java33 void constrainComponent(Context ctx, Node node) { argument
34 if (node instanceof CommandNode) {
35 node.constrain(ctx);
37 error("Expected 'Command' item, got: " + node);
H A DErrorSetNode.java33 void constrainComponent(Context ctx, Node node) { argument
34 if (node instanceof ErrorNode) {
35 node.constrain(ctx);
37 error("Expected 'Error' item, got: " + node);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DTextImpl.java74 * NON-DOM: resets node and sets specified values for the current node
92 * A short integer indicating what type of node this is. The named
99 /** Returns the node name. */
120 * Returns whether this text node contains
122 * The text node is determined to contain whitespace in element content
139 * nodes to this node, concatenated in document order.
158 //concatenate text of logically adjacent text nodes to the left of this node in the tree
165 //concatenate text of logically adjacent text nodes to the right of this node in the tree
187 * right of this node
195 getWholeTextForward(Node node, StringBuffer buffer, Node parent) argument
242 getWholeTextBackward(Node node, StringBuffer buffer, Node parent) argument
398 canModifyPrev(Node node) argument
483 canModifyNext(Node node) argument
553 hasTextOnlyChildren(Node node) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibOid.java45 * Represents a node in an SNMP MIB which is neither a group nor a variable.
75 * @param req The sub-request that must be handled by this node.
98 * @param req The sub-request that must be handled by this node.
121 * @param req The sub-request that must be handled by this node.
153 SnmpMibNode node = null;
175 // a table: we register this node.
202 SnmpMibNode node = null;
272 // If a node has several children, let assume that we are one step to
287 * Registers a specific node in the tree.
289 public void registerNode(String oidString ,SnmpMibNode node) argument
301 registerNode(long[] oid, int cursor ,SnmpMibNode node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMatchingIterator.java32 * node N. If initialized with a node M (the parent of N) it computes the
42 * of the way the pattern matching is implemented, N will always be a node
58 * The node to match.
88 public DTMAxisIterator setStartNode(int node) { argument
91 _source.setStartNode(node);
93 // Calculate the position of the node in the set
95 while ((node = _source.next()) != END && node != _match) {
H A DStripWhitespaceFilter.java33 public boolean stripSpace(DOM dom, int node, int type); argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMAxisIterator.java26 * This class iterates over a single XPath Axis, and returns node handles.
35 * Get the next node in the iteration.
37 * @return The next node handle in the iteration, or END.
43 * Resets the iterator to the last start node.
57 * @return The position of the current node in the set, as defined by XPath.
62 * Remembers the current node for the next call to gotoMark().
67 * Restores the current node remembered by setMark().
75 * @param node Sets the root of the iteration.
79 public DTMAxisIterator setStartNode(int node); argument
85 * @return The root node o
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DDOMCatalogParser.java44 * Parse a DOM node as a catalog entry.
46 * <p>This method is expected to analyze the specified node and
49 * @param catalog The catalog for which this node is being considered.
50 * @param node The DOM Node from the catalog.
52 public void parseCatalogEntry(Catalog catalog, Node node); argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncNormalizeSpace.java74 int node = getArg0AsNode(xctxt);
75 if(DTM.NULL != node)
77 DTM dtm = xctxt.getDTM(node);
78 dtm.dispatchCharactersEvents(node, handler, true);
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DMutableTreeNode.java29 * Defines the requirements for a tree node object that can change --
31 * of a user object stored in the node.
54 * Removes <code>node</code> from the receiver. <code>setParent</code>
55 * will be messaged on <code>node</code>.
57 void remove(MutableTreeNode node); argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTree.java75 * This method removes the node from its parent
84 * This method adds the child to the specified parent node
97 * This method adds the child to the specified parent node.
99 * child node being Comparable or not. If the child node is
117 // expr1: child node must be inserted after metadata nodes
151 // unregistered notification). Deletes the tree node associated
152 // with the given MBean and recursively all the node parents
155 DefaultMutableTreeNode node = null;
161 node
184 hasNonMetadataNodes(DefaultMutableTreeNode node) argument
207 hasMetadataNodes(DefaultMutableTreeNode node) argument
230 isMetadataNode(DefaultMutableTreeNode node) argument
250 removeMetadataNodes(DefaultMutableTreeNode node) argument
279 removeParentFromView( Dn dn, int index, DefaultMutableTreeNode node) argument
380 changeNodeValue( DefaultMutableTreeNode node, XNodeInfo nodeValue) argument
525 addMetadataNodes(DefaultMutableTreeNode node) argument
539 private final DefaultMutableTreeNode node; field in class:XTree.MBeanInfoNodesSwingWorker
542 MBeanInfoNodesSwingWorker( DefaultTreeModel model, DefaultMutableTreeNode node, XMBean mbean) argument
580 addMBeanInfoNodes( DefaultTreeModel tree, DefaultMutableTreeNode node, XMBean mbean, MBeanInfo mbeanInfo, Boolean isBroadcaster) argument
703 compareTo(DefaultMutableTreeNode node) argument
[all...]
H A DXTreeRenderer.java44 XNodeInfo node = (XNodeInfo) userObject;
45 setToolTipText(node.getToolTipText());
46 switch (node.getType()) {
48 XMBean xmbean = (XMBean) node.getData();

Completed in 104 milliseconds

1234567891011>>