Searched refs:node (Results 326 - 350 of 510) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java65 Node node = (Node)iter.next();
66 if (name.equals(node.getNodeName())) {
67 return node;
75 Node node = (Node)nodes.get(index);
76 return node;
199 * A class representing a node in a meta-data tree, which implements
214 * name" and "node name" are always considered to be synonymous.
233 * The name of the node as a <code>String</code>.
238 * The value of the node as a <code>String</code>. The Image I/O
239 * API typically does not make use of the node valu
308 checkNode(Node node) argument
1043 isSameNode(Node node) argument
1053 isEqualNode(Node node) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DSelectNode.java61 void constrainComponent(Context ctx, Node node) { argument
62 node.constrain(ctx);
63 if (!(node instanceof AltNode)) {
/openjdk7/jdk/test/javax/imageio/metadata/
H A DBooleanAttributes.java170 Element node = doc.getDocumentElement();
171 String metaFormat = node.getNodeName();
176 meta.mergeTree(metaFormat, node);
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmRTBootClassPathEntryMeta.java91 return new SnmpString(node.getJvmRTBootClassPathItem());
140 node = var;
247 protected JvmRTBootClassPathEntryMBean node; field in class:JvmRTBootClassPathEntryMeta
H A DJvmRTClassPathEntryMeta.java91 return new SnmpString(node.getJvmRTClassPathItem());
140 node = var;
247 protected JvmRTClassPathEntryMBean node; field in class:JvmRTClassPathEntryMeta
H A DJvmRTInputArgsEntryMeta.java91 return new SnmpString(node.getJvmRTInputArgsItem());
140 node = var;
247 protected JvmRTInputArgsEntryMBean node; field in class:JvmRTInputArgsEntryMeta
H A DJvmRTLibraryPathEntryMeta.java91 return new SnmpString(node.getJvmRTLibraryPathItem());
140 node = var;
247 protected JvmRTLibraryPathEntryMBean node; field in class:JvmRTLibraryPathEntryMeta
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLSignatureFactory.java151 private XMLSignature unmarshal(Node node, XMLValidateContext context) argument
154 node.normalize();
157 if (node.getNodeType() == Node.DOCUMENT_NODE) {
158 element = ((Document) node).getDocumentElement();
159 } else if (node.getNodeType() == Node.ELEMENT_NODE) {
160 element = (Element) node;
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.hpp116 bool _has_match_rule[_last_opcode]; // found AD rule for ideal node in <arch>.ad
303 void defineExpand (FILE *fp, InstructForm *node);
305 void definePeephole (FILE *fp, InstructForm *node);
307 void defineSize (FILE *fp, InstructForm &node);
311 void defineEvalConstant(FILE *fp, InstructForm &node);
313 void defineEmit (FILE *fp, InstructForm &node);
353 void buildMList(MatchNode *node, const char *rootOp, const char *resultOp,
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractDOMParser.java118 /** Feature id: defer node expansion. */
218 /** The document type node. */
221 /** Current node. */
250 /** Root element node. */
329 * to defer node expansion on the DOM tree produced.
527 // expanded anyway. Synch only needed when user creates entityRef node
540 int node = fDeferredDocumentImpl.getLastChild (fDocumentTypeIndex, false);
541 while (node != -1) {
542 short nodeType = fDeferredDocumentImpl.getNodeType (node, false);
545 fDeferredDocumentImpl.getNodeName (node, fals
1690 handleBaseURI(Node node) argument
1740 handleBaseURI(int node) argument
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLDOMWriterImpl.java65 private Node node = null; field in class:XMLDOMWriterImpl
78 node = result.getNode();
79 if( node.getNodeType() == Node.DOCUMENT_NODE){
80 ownerDoc = (Document)node;
83 ownerDoc = node.getOwnerDocument();
84 currentNode = node;
203 //Convert node type to String
244 //Convert node type to String
280 //Convert node type to String
356 //Convert node typ
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DSAPanel.java81 public void showInspector(SimpleTreeNode node) { argument
84 listener.showInspector(node);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedBlockingQueue.java118 * Linked list node class
127 * - null, meaning there is no successor (this is the last node)
192 * Links node at end of queue.
194 * @param node the node
196 private void enqueue(Node<E> node) { argument
199 last = last.next = node;
203 * Removes a node from head of queue.
205 * @return the node
335 Node<E> node
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp993 QueueNode* node = new QueueNode(event); local
995 _queue_tail = _queue_head = node;
998 _queue_tail->set_next(node);
999 _queue_tail = node;
1019 QueueNode* node = _queue_head; local
1028 JvmtiDeferredEvent event = node->event();
1029 delete node;
1036 QueueNode* node = new QueueNode(event); local
1041 node->set_next(prev_value);
1043 (void*)node, (volatil
1071 QueueNode* node = new_tail->next(); local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicyModelGenerator.java105 * @param parentAssertion The parent node.
112 * Add the contents of the assertion set as child node to the given model node.
114 * @param node The content of this assertion set are added as child nodes to this node.
116 * @param assertions The assertions that are to be added to the node. May not be null.
118 protected void translate(final ModelNode node, final AssertionSet assertions) { argument
121 final ModelNode assertionNode = node.createChildAssertionNode(data);
135 * @param assertionNode The node to which the assertions are added as child nodes
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DUnmarshaller.java532 * @param node
548 public Object unmarshal( org.w3c.dom.Node node ) throws JAXBException;
557 * @param node
561 * appropriate JAXB mapped class to hold <tt>node</tt>'s XML data.
563 * @return <a href="#unmarshalDeclaredTypeReturn">JAXB Element</a> representation of <tt>node</tt>
576 public <T> JAXBElement<T> unmarshal( org.w3c.dom.Node node, Class<T> declaredType ) throws JAXBException; argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DMemberSummaryBuilder.java199 * @param node the XML element that specifies which components to document
202 public void buildEnumConstantsSummary(XMLNode node, Content memberSummaryTree) { argument
213 * @param node the XML element that specifies which components to document
216 public void buildAnnotationTypeOptionalMemberSummary(XMLNode node, Content memberSummaryTree) { argument
227 * @param node the XML element that specifies which components to document
230 public void buildAnnotationTypeRequiredMemberSummary(XMLNode node, Content memberSummaryTree) { argument
241 * @param node the XML element that specifies which components to document
244 public void buildFieldsSummary(XMLNode node, Content memberSummaryTree) { argument
255 public void buildPropertiesSummary(XMLNode node, Content memberSummaryTree) { argument
266 * @param node th
269 buildNestedClassesSummary(XMLNode node, Content memberSummaryTree) argument
283 buildMethodsSummary(XMLNode node, Content memberSummaryTree) argument
297 buildConstructorsSummary(XMLNode node, Content memberSummaryTree) argument
[all...]
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DElementTreePanel.java74 * a node will result in reseting the selection of the JTextComponent.
148 // Since the display value of every node after the insertion point
475 * root a fake node has be created. This class creates a fake node as
492 * the parent's child array. <I>parent</I> must be a node
498 * @param parent a node in the tree, obtained from this data source
511 * if the node is a leaf or if it has no children.
512 * <I>parent</I> must be a node previously obtained from this
515 * @param parent a node in the tree, obtained from this data source
516 * @return the number of children of the node <
537 isLeaf(Object node) argument
566 nodeChanged(TreeNode node) argument
[all...]
/openjdk7/langtools/test/tools/javac/
H A DT6993301.java83 public Void visitVariable(VariableTree node, Void p) {
89 return super.visitVariable(node, p);
/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.cpp33 int MachOper::reg(PhaseRegAlloc *ra_, const Node *node) const {
34 return (int)ra_->get_encode(node);
37 int MachOper::reg(PhaseRegAlloc *ra_, const Node *node, int idx) const { argument
38 return (int)(ra_->get_encode(node->in(idx)));
49 int MachOper::base (PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; } argument
50 int MachOper::index(PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; } argument
52 int MachOper::disp (PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; } argument
165 uint MachNode::cmp( const Node &node ) const {
166 MachNode& n = *((Node&)node).as_Mach();
328 // Direct addressing modes have no base node, simpl
749 int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const argument
756 int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const argument
[all...]
H A Dnode.hpp145 // The type of all node counts and indexes.
205 // from. This should allow fast access to node creation & deletion. This
281 // users of this node.
305 // Iterate over the out-edges of this node. Deletions are illegal.
309 // Does the node have an out at this position? (Used for iteration.)
312 // Iterate over the out-edges of this node. All changes are illegal.
315 // Iterate over the out-edges of this node, deleting one at a time.
320 // Iterate over the out-edges of this node. Deletions are illegal.
328 // Does the node have an out at this position? (Used for iteration.)
331 // Iterate over the out-edges of this node
1111 DUIterator(const Node* node, int dummy_to_avoid_conversion) argument
1173 DUIterator_Fast(const Node* node, ptrdiff_t offset) argument
1231 DUIterator_Last(const Node* node, ptrdiff_t offset) argument
1281 Node* node; member in class:SimpleDUIterator
1407 Node *node; // Processed node member in struct:Node_Stack::INode
1442 Node *node() const { function in class:Node_Stack
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xslt/
H A DEnvironmentCheck.java470 Element node = factory.createElement("item");
471 node.setAttribute("key", keyStr);
472 node.appendChild(factory.createTextNode((String)h.get(keyStr)));
473 hashNode.appendChild(node);
479 Element node = factory.createElement("item");
480 node.setAttribute("key", keyStr);
481 node.appendChild(factory.createTextNode(ERROR + " Reading " + key + " threw: " + e.toString()));
482 hashNode.appendChild(node);
538 Element node = factory.createElement("foundJar");
539 node
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DSymbolTable.java74 public Stylesheet addStylesheet(QName name, Stylesheet node) { argument
75 return (Stylesheet)_stylesheets.put(name, node);
171 public void setCurrentNode(SyntaxTreeNode node) { argument
172 _current = node;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAbsoluteIterator.java32 * Absolute iterators ignore the node that is passed to setStartNode().
33 * Instead, they always start from the root node. The node passed to
36 * DOM "owning" the node.
61 public DTMAxisIterator setStartNode(int node) { argument
H A DNodeSortRecord.java88 public NodeSortRecord(int node) { argument
89 _node = node;
100 public final void initialize(int node, int last, DOM dom, argument
105 _node = node;
142 * Returns the node for this sort object

Completed in 118 milliseconds

<<11121314151617181920>>