Searched refs:node (Results 301 - 325 of 510) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemManagerEntryMeta.java92 return new SnmpInt(node.getJvmMemManagerState());
95 return new SnmpString(node.getJvmMemManagerName());
150 node = var;
262 protected JvmMemManagerEntryMBean node; field in class:JvmMemManagerEntryMeta
H A DJvmMemMgrPoolRelEntryMeta.java92 return new SnmpString(node.getJvmMemMgrRelPoolName());
95 return new SnmpString(node.getJvmMemMgrRelManagerName());
142 node = var;
244 protected JvmMemMgrPoolRelEntryMBean node; field in class:JvmMemMgrPoolRelEntryMeta
/openjdk7/langtools/test/tools/javac/multicatch/model/
H A DModelChecker.java78 public Void visitCatch(CatchTree node, Void p) { argument
79 TreePath param = new TreePath(getCurrentPath(), node.getParameter());
84 for (Element e : types.asElement(trees.getLub(node)).getEnclosedElements()) {
92 return super.visitCatch(node, p);
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.hpp101 static void pre_node(Node* node, void *env);
102 static void post_node(Node* node, void *env);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DObjectContainer.java132 * @param node child Node
133 * @return the new node in the tree.
135 public Node appendChild(Node node) { argument
139 result = this._constructionElement.appendChild(node);
H A DSignatureProperty.java121 * @param node
122 * @return the node in this element.
124 public Node appendChild(Node node) { argument
125 return this._constructionElement.appendChild(node);
/openjdk7/langtools/test/tools/javac/api/6471599/
H A DMain.java71 public Void visitAssignment(AssignmentTree node, Void ignored) { argument
72 TreePath path = TreePath.getPath(getCurrentPath(), node.getExpression());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDeferredDocumentImpl.java88 // depending on the node type.
196 /** Creates a document node in the table. */
206 // create node
216 // return node index
225 // create extra data node to store internal subset
237 // create node
243 // create extra data node
253 // in extra data node set baseURI value
257 // return node index
266 // create node
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DCallTemplate.java154 SyntaxTreeNode node = (SyntaxTreeNode)_parameters[i];
158 if (node instanceof Param) {
162 node.translate(classGen, methodGen);
216 Object node = elementAt(i);
219 if (node instanceof WithParam) {
220 WithParam withParam = (WithParam)node;
H A DKeyCall.java120 SyntaxTreeNode node = this;
121 while (node != null && node instanceof TopLevelElement == false) {
122 node = node.getParent();
125 TopLevelElement parent = (TopLevelElement) node;
134 * to a string, and the lookup-value must be a string or a node-set.
160 // If the value is known not to be a node-set, then it should be
162 // known to be a node-set then this process (convert to string, then
163 // do lookup) should be applied to every node i
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java634 // Find the new node and its parent.
635 LogNode node = getNode(name);
636 node.loggerRef = ref;
638 LogNode nodep = node.parent;
654 node.walkAndSetParent(logger);
656 ref.setNode(node);
705 // Gets a node in our tree of logger nodes.
711 LogNode node = root;
722 if (node.children == null) {
723 node
839 private LogNode node; // for loggerRef cleanup field in class:LogManager.LoggerWeakRef
873 setNode(LogNode node) argument
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.hpp234 typedef int (*numa_node_to_cpus_func_t)(int node, unsigned long *buffer, int bufferlen);
237 typedef int (*numa_tonode_memory_func_t)(void *start, size_t size, int node);
257 static int numa_node_to_cpus(int node, unsigned long *buffer, int bufferlen) { argument
258 return _numa_node_to_cpus != NULL ? _numa_node_to_cpus(node, buffer, bufferlen) : -1;
262 static int numa_tonode_memory(void *start, size_t size, int node) { argument
263 return _numa_tonode_memory != NULL ? _numa_tonode_memory(start, size, node) : -1;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.hpp219 typedef int (*numa_node_to_cpus_func_t)(int node, unsigned long *buffer, int bufferlen);
222 typedef int (*numa_tonode_memory_func_t)(void *start, size_t size, int node);
243 static int numa_node_to_cpus(int node, unsigned long *buffer, int bufferlen) { argument
244 return _numa_node_to_cpus != NULL ? _numa_node_to_cpus(node, buffer, bufferlen) : -1;
248 static int numa_tonode_memory(void *start, size_t size, int node) { argument
249 return _numa_tonode_memory != NULL ? _numa_tonode_memory(start, size, node) : -1;
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DShortHistogramTest.java105 /* add hIST node to image metadata */
123 // add hIST node
126 System.out.println("Appending new hIST node...");
177 private static void dump(Node node, String ident) { argument
178 if (node == null) {
182 System.out.printf("%s%s\n", ident, node.getNodeName());
184 // dump node attributes...
185 NamedNodeMap attribs = node.getAttributes();
193 // dump node children...
194 dump(node
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java780 // Simple segment with a single node
896 LayoutNode n = s.nodes.get(0); // Only first node needed, all other have same coordinate
917 LayoutNode n = s.nodes.get(0); // Only first node needed, all other have same coordinate
1372 // Dummy node
1756 for (LayoutNode node : nodes) {
1757 ArrayList<LayoutEdge> succs = new ArrayList<LayoutEdge>(node.succs);
1759 assert e.from == node;
1760 if (e.to == node) {
1761 node.succs.remove(e);
1762 node
1950 reverseAllInputs(LayoutNode node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DBaseMarkupSerializer.java238 /** Current node that is being processed */
418 * Serializes a node using the previously specified
422 * @param node Node to serialize
425 public void serialize( Node node ) throws IOException {
428 serializeNode( node );
429 //Print any PIs and Comments which appeared in 'node'
513 // The contents of a text node is considered space preserving.
1000 // Generic node serializing methods methods //
1005 * Serialize the DOM node. This method is shared across XML, HTML and XHTML
1009 * @param node Th
1938 modifyDOMError(String message, short severity, String type, Node node) argument
1965 checkUnboundNamespacePrefixedNode(Node node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DUnionPathIterator.java39 * As each node is iterated via nextNode(), the node is also stored
277 * @return A clone of this iterator that holds the same node position.
378 * Returns the next node in the set and advances the position of the
380 * to nextNode() returns the first node in the set.
390 // node, and get the earliest occuring in document order
400 int node = m_iterators[i].getCurrentNode();
402 if (DTM.NULL == node)
407 earliestNode = node;
411 if (node
[all...]
H A DNodeSequence.java44 /** The index of the last node in the iteration. */
48 * The index of the next node to be fetched. Useful if this
163 * @param context The initial context node.
321 // If the cache is on, and the node has already been found, then
329 // The node is in the cache, so just return it.
547 public void setItem(int node, int index) argument
553 if (oldNode != node && m_cache.useCount() > 1) {
554 /* If we are going to set the node at the given index
586 vec.setElementAt(node, index);
590 m_iter.setItem(node, inde
730 addNodeInDocOrder(int node) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DUtility.java281 int node = 0;
302 // if we could look ahead, but we can't, so we use 'node' to
304 switch (node) {
306 // Normal idle node
308 node = 1;
319 node = 0;
325 node = 2;
332 node = 0;
337 if (node != 0)
/openjdk7/langtools/test/tools/javac/parser/netbeans/
H A DJavacParserTest.java339 public Void scan(Tree node, Void p) {
340 if (node == null) {
344 long start = trees.getSourcePositions().getStartPosition(cut, node);
349 assertTrue(node.toString() + ":" + start + "/" + parentStart,
356 long end = trees.getSourcePositions().getEndPosition(cut, node);
358 assertTrue(node.toString() + ":" + end + "/" + parentEnd,
365 super.scan(node, p);
462 public Void scan(Tree node, Void p) {
463 if (node == null) {
466 long start = trees.getSourcePositions().getStartPosition(cut, node);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToHTMLStream.java1622 // Use a fairly nasty hack to tell if the next node is supposed to be
2023 /** The root node of the tree. */
2070 Node node = m_Root;
2075 node.m_nextChar[Character.toLowerCase(key.charAt(i))];
2079 node = nextNode;
2089 node.m_nextChar[Character.toLowerCase(
2096 node.m_nextChar[Character.toUpperCase(
2099 node.m_nextChar[Character.toLowerCase(
2103 node = newNode;
2109 Object ret = node
[all...]
H A DToSAXHandler.java344 * This method gets the node's value as a String and uses that String as if
346 * @param node the Node to serialize
349 public void characters(org.w3c.dom.Node node) argument
352 // remember the current node
355 m_state.setCurrentNode(node);
358 // Get the node's value as a String and use that String as if
360 String data = node.getNodeValue();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DBodyImpl.java282 for (org.w3c.dom.Node node = firstBodyElement.getNextSibling();
283 node != null;
284 node = node.getNextSibling()) {
286 if (node instanceof Element) {
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DREDebugCompiler.java100 * Returns a descriptive string for a node in a regular expression program.
101 * @param node Node to describe
102 * @return Description of node
104 String nodeToString(int node) argument
106 // Get opcode and opdata for node
107 char opcode = instruction[node + RE.offsetOpcode];
108 int opdata = (int)instruction[node + RE.offsetOpdata];
115 * Inserts a node with a given opcode and opdata at insertAt. The node relative next
117 * @param opcode Opcode for new node
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncId.java82 int node = dtm.getElementById(ref);
84 if (DTM.NULL != node)
85 nodeSet.addNodeInDocOrder(node, xctxt);

Completed in 130 milliseconds

<<11121314151617181920>>