Searched refs:node (Results 51 - 75 of 510) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDOMAdapter.java159 public DTMAxisIterator getChildren(final int node) { argument
161 return _enhancedDOM.getChildren(node);
164 DTMAxisIterator iterator = _dom.getChildren(node);
165 return iterator.setStartNode(node);
227 public DTMAxisIterator orderNodes(DTMAxisIterator source, int node) { argument
228 return _dom.orderNodes(source, node);
231 public int getExpandedTypeID(final int node) { argument
235 type = mapping[_enhancedDOM.getExpandedTypeID2(node)];
240 type = mapping[_dom.getExpandedTypeID(node)];
244 type = _dom.getExpandedTypeID(node);
250 getNamespaceType(final int node) argument
254 getNSType(int node) argument
258 getParent(final int node) argument
266 getNodeName(final int node) argument
273 getNodeNameX(final int node) argument
281 getNamespaceName(final int node) argument
289 getStringValueX(final int node) argument
302 copy(final int node, SerializationHandler handler) argument
314 shallowCopy(final int node, SerializationHandler handler) argument
361 getLanguage(int node) argument
388 getDocumentURI(int node) argument
398 isElement(final int node) argument
403 isAttribute(final int node) argument
455 lookupNamespace(int node, String prefix) argument
[all...]
H A DMultiDOM.java88 public DTMAxisIterator setStartNode(final int node) { argument
89 if (node == DTM.NULL) {
93 int dom = node >>> DTMManager.IDENT_DTM_NODE_BITS;
107 _source.setStartNode(node);
164 * This is a specialised iterator for predicates comparing node or
215 int node;
216 while ((node = _source.next()) != END) {
217 String val = getStringValueX(node);
220 return returnNode(node);
222 return returnNode(getParent(node));
228 setStartNode(int node) argument
393 getChildren(final int node) argument
410 getNthDescendant(int node, int n, boolean includeself) argument
430 orderNodes(DTMAxisIterator source, int node) argument
434 getExpandedTypeID(final int node) argument
443 getNamespaceType(final int node) argument
447 getNSType(int node) argument
452 getParent(final int node) argument
466 getNodeName(final int node) argument
473 getNodeNameX(final int node) argument
480 getNamespaceName(final int node) argument
487 getStringValueX(final int node) argument
494 copy(final int node, SerializationHandler handler) argument
512 shallowCopy(final int node, SerializationHandler handler) argument
574 getLanguage(int node) argument
586 getDocumentURI(int node) argument
593 isElement(final int node) argument
600 isAttribute(final int node) argument
656 lookupNamespace(int node, String prefix) argument
[all...]
H A DCachedNodeListIterator.java56 public DTMAxisIterator setStartNode(int node) { argument
58 _startNode = node;
59 _source.setStartNode(node);
84 int node = _source.next();
85 if (node != END) {
86 _nodes.add(node);
92 return node;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/
H A DNamespaces.java76 * specified context node.
78 * @param node The context node.
83 public static String getNamespaceURI(Node node, String prefix) { argument
84 if (node == null || node.getNodeType() != Node.ELEMENT_NODE) {
89 if (((Element) node).hasAttribute("xmlns")) {
90 return ((Element) node).getAttribute("xmlns");
94 if (((Element) node).hasAttribute(nsattr)) {
95 return ((Element) node)
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DArg.java32 public Arg(final Node node, final Function parent) { argument
33 super(node, parent);
H A DCFType.java38 public CFType(final Node node, final Framework parent) { argument
39 super(node, getAttr(node, "name"), parent);
40 getTypeIdFunc = getAttr(node, "gettypeid_func");
41 tollfree = getAttr(node, "tollfree");
H A DOpaque.java35 public Opaque(final Node node, final Framework parent) { argument
36 super(node, getAttr(node, "name"), parent);
/openjdk7/langtools/test/tools/javac/generics/wildcards/
H A DT5097548b.java41 Node<?> node = null;
42 node.getOutEdge().setEndNode(null);
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java79 * Wait queue node class.
85 * information about a thread in the predecessor of its node. A
86 * "status" field in each node keeps track of whether a thread
87 * should block. A node is signalled when its predecessor
88 * releases. Each node of the queue otherwise serves as a
113 * needed to handle cancellation. If a node is cancelled, its
120 * The thread id for each node is kept in its own node, so a
121 * predecessor signals the next node to wake up by traversing
126 * updated "tail" when a node'
360 enq(final Node node) argument
404 setHead(Node node) argument
415 unparkSuccessor(Node node) argument
485 setHeadAndPropagate(Node node, long propagate) argument
517 cancelAcquire(Node node) argument
570 shouldParkAfterFailedAcquire(Node pred, Node node) argument
632 acquireQueued(final Node node, long arg) argument
1407 isOnSyncQueue(Node node) argument
1428 findNodeFromTail(Node node) argument
1446 transferForSignal(Node node) argument
1474 transferAfterCancelledWait(Node node) argument
1496 fullyRelease(Node node) argument
1783 checkInterruptWhileWaiting(Node node) argument
2094 compareAndSetWaitStatus(Node node, int expect, int update) argument
2104 compareAndSetNext(Node node, Node expect, Node update) argument
[all...]
H A DAbstractQueuedSynchronizer.java302 * Wait queue node class.
308 * information about a thread in the predecessor of its node. A
309 * "status" field in each node keeps track of whether a thread
310 * should block. A node is signalled when its predecessor
311 * releases. Each node of the queue otherwise serves as a
336 * needed to handle cancellation. If a node is cancelled, its
343 * The thread id for each node is kept in its own node, so a
344 * predecessor signals the next node to wake up by traversing
349 * updated "tail" when a node'
583 enq(final Node node) argument
627 setHead(Node node) argument
638 unparkSuccessor(Node node) argument
708 setHeadAndPropagate(Node node, int propagate) argument
740 cancelAcquire(Node node) argument
793 shouldParkAfterFailedAcquire(Node pred, Node node) argument
855 acquireQueued(final Node node, int arg) argument
1630 isOnSyncQueue(Node node) argument
1651 findNodeFromTail(Node node) argument
1669 transferForSignal(Node node) argument
1697 transferAfterCancelledWait(Node node) argument
1719 fullyRelease(Node node) argument
2004 checkInterruptWhileWaiting(Node node) argument
2315 compareAndSetWaitStatus(Node node, int expect, int update) argument
2325 compareAndSetNext(Node node, Node expect, Node update) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeIteratorImpl.java60 // Iterator state - current node and direction.
62 // Note: The current node and direction are sufficient to implement
64 // two nodes. The fCurrentNode is actually the last node returned,
66 // direction is whether the pointer is in front or behind this node.
67 // (usually akin to whether the node was returned via nextNode())
127 /** Return the next Node in the Iterator. The node is the next node in
129 * If there is no next node which passes these criteria, then return null.
139 // if root is null there is no next node.
143 boolean accepted = false; // the next node ha
233 acceptNode(Node node) argument
244 matchNodeOrParent(Node node) argument
263 nextNode(Node node, boolean visitChildren) argument
305 previousNode(Node node) argument
338 removeNode(Node node) argument
[all...]
H A DDeferredDocumentTypeImpl.java85 /** Returns the node index. */
122 // create new node maps
130 // fill node maps
136 DeferredNode node = ownerDocument.getNodeObject(index);
137 int type = node.getNodeType();
142 entities.setNamedItem(node);
148 notations.setNamedItem(node);
154 elements.setNamedItem(node);
161 insertBefore(node, last);
162 last = node;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMDocumentHandler.java52 * @param node a DocumentType node
56 public void doctypeDecl(DocumentType node) throws XNIException; argument
58 public void characters(Text node) throws XNIException; argument
60 public void cdata(CDATASection node) throws XNIException; argument
65 * @param node a Comment node
69 public void comment(Comment node) throws XNIException; argument
82 * @param node a ProcessingInstruction node
86 processingInstruction(ProcessingInstruction node) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DRootNode.java33 void constrainComponent(Context ctx, Node node) { argument
34 if (node instanceof CommandSetNode ||
35 node instanceof ConstantSetNode) {
36 node.constrain(ctx);
38 error("Expected 'CommandSet' item, got: " + node);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DSOFMarkerSegment.java89 SOFMarkerSegment(Node node) throws IIOInvalidTreeException { argument
95 updateFromNativeNode(node, true);
111 IIOMetadataNode node = new IIOMetadataNode("sof");
112 node.setAttribute("process", Integer.toString(tag-JPEG.SOF0));
113 node.setAttribute("samplePrecision",
115 node.setAttribute("numLines",
117 node.setAttribute("samplesPerLine",
119 node.setAttribute("numFrameComponents",
122 node.appendChild(componentSpecs[i].getNativeNode());
125 return node;
128 updateFromNativeNode(Node node, boolean fromScratch) argument
241 ComponentSpec(Node node) argument
[all...]
H A DSOSMarkerSegment.java84 SOSMarkerSegment(Node node) throws IIOInvalidTreeException { argument
90 updateFromNativeNode(node, true);
107 IIOMetadataNode node = new IIOMetadataNode("sos");
108 node.setAttribute("numScanComponents",
110 node.setAttribute("startSpectralSelection",
112 node.setAttribute("endSpectralSelection",
114 node.setAttribute("approxHigh",
116 node.setAttribute("approxLow",
119 node.appendChild(componentSpecs[i].getNativeNode());
122 return node;
125 updateFromNativeNode(Node node, boolean fromScratch) argument
203 ScanComponentSpec(Node node) argument
[all...]
H A DDRIMarkerSegment.java53 DRIMarkerSegment(Node node) throws IIOInvalidTreeException { argument
55 updateFromNativeNode(node, true);
59 IIOMetadataNode node = new IIOMetadataNode("dri");
60 node.setAttribute("interval", Integer.toString(restartInterval));
61 return node;
64 void updateFromNativeNode(Node node, boolean fromScratch) argument
66 restartInterval = getAttributeValue(node, null, "interval",
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemPoolEntryMeta.java110 return new SnmpCounter64(node.getJvmMemPoolCollectMaxSize());
113 return new SnmpCounter64(node.getJvmMemPoolCollectCommitted());
116 return new SnmpCounter64(node.getJvmMemPoolCollectUsed());
119 return new SnmpInt(node.getJvmMemPoolCollectThreshdSupport());
122 return new SnmpCounter64(node.getJvmMemPoolCollectThreshdCount());
125 return new SnmpCounter64(node.getJvmMemPoolCollectThreshold());
128 return new SnmpCounter64(node.getJvmMemPoolMaxSize());
131 return new SnmpCounter64(node.getJvmMemPoolCommitted());
134 return new SnmpCounter64(node.getJvmMemPoolUsed());
137 return new SnmpCounter64(node
581 protected JvmMemPoolEntryMBean node; field in class:JvmMemPoolEntryMeta
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM2.java71 * Iterator that returns all immediate children of a given node
82 * or set current node to END, to indicate request-not-honored?
84 * @param node Sets the root of the iteration.
88 public DTMAxisIterator setStartNode(int node) argument
91 if (node == DTMDefaultBase.ROOTNODE)
92 node = getDocument();
95 _startNode = node;
96 _currentNode = (node == DTM.NULL) ? DTM.NULL
97 : _firstch2(makeNodeIdentity(node));
106 * Get the next node i
142 setStartNode(int node) argument
245 setStartNode(int node) argument
418 setStartNode(int node) argument
514 setStartNode(int node) argument
579 setStartNode(int node) argument
640 setStartNode(int node) argument
861 setStartNode(int node) argument
1065 setStartNode(int node) argument
1289 setStartNode(int node) argument
1416 setStartNode(int node) argument
1524 setStartNode(int node) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DClassBuilder.java130 * @param node the XML element that specifies which components to document
133 public void buildClassDoc(XMLNode node, Content contentTree) throws Exception { argument
145 buildChildren(node, classContentTree);
156 * @param node the XML element that specifies which components to document
159 public void buildClassTree(XMLNode node, Content classContentTree) { argument
166 * @param node the XML element that specifies which components to document
169 public void buildClassInfo(XMLNode node, Content classContentTree) { argument
171 buildChildren(node, classInfoTree);
178 * @param node the XML element that specifies which components to document
181 public void buildTypeParamInfo(XMLNode node, Conten argument
191 buildSuperInterfacesInfo(XMLNode node, Content classInfoTree) argument
201 buildImplementedInterfacesInfo(XMLNode node, Content classInfoTree) argument
211 buildSubClassInfo(XMLNode node, Content classInfoTree) argument
221 buildSubInterfacesInfo(XMLNode node, Content classInfoTree) argument
231 buildInterfaceUsageInfo(XMLNode node, Content classInfoTree) argument
241 buildDeprecationInfo(XMLNode node, Content classInfoTree) argument
251 buildNestedClassInfo(XMLNode node, Content classInfoTree) argument
282 buildClassSignature(XMLNode node, Content classInfoTree) argument
311 buildClassDescription(XMLNode node, Content classInfoTree) argument
321 buildClassTagInfo(XMLNode node, Content classInfoTree) argument
331 buildMemberSummary(XMLNode node, Content classContentTree) argument
344 buildMemberDetails(XMLNode node, Content classContentTree) argument
356 buildEnumConstantsDetails(XMLNode node, Content memberDetailsTree) argument
368 buildFieldDetails(XMLNode node, Content memberDetailsTree) argument
379 buildPropertyDetails(XMLNode node, Content memberDetailsTree) argument
391 buildConstructorDetails(XMLNode node, Content memberDetailsTree) argument
403 buildMethodDetails(XMLNode node, Content memberDetailsTree) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DPartiallyOrderedSet.java97 DigraphNode node = new DigraphNode(o);
98 poNodes.put(o, node);
107 DigraphNode node = (DigraphNode)poNodes.get(o);
108 if (node == null) {
113 node.dispose();
123 * requested, the first node will appear earlier in the
124 * sequence than the second node. If a prior ordering existed
177 DigraphNode node = (DigraphNode)iter.next();
178 int inDegree = node.getInDegree();
179 inDegrees.put(node, ne
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPMetadata.java139 IIOMetadataNode node = addChildNode(root, "PixelsPerMeter", null);
140 addChildNode(node, "X", new Integer(xPixelsPerMeter));
141 addChildNode(node, "Y", new Integer(yPixelsPerMeter));
152 node = addChildNode(root, "Mask", null);
153 addChildNode(node, "Red", new Integer(redMask));
154 addChildNode(node, "Green", new Integer(greenMask));
155 addChildNode(node, "Blue", new Integer(blueMask));
156 addChildNode(node, "Alpha", new Integer(alphaMask));
160 node = addChildNode(root, "CIEXYZEndPoints", null);
161 addXYZPoints(node, "Re
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMTreeWalker.java101 * (postorder) are invoked for each node as we traverse over them,
102 * with the result that the node is written out to m_contentHandler.
151 * (postorder) are invoked for each node as we traverse over them,
152 * with the result that the node is written out to m_contentHandler.
203 private final void dispatachChars(int node) argument
206 m_dtm.dispatchCharactersEvents(node, m_contentHandler, false);
210 * Start processing given node
213 * @param node Node to process
217 protected void startNode(int node) throws org.xml.sax.SAXException argument
223 // ((NodeConsumer) m_contentHandler).setOriginatingNode(node);
365 endNode(int node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DDOMSerializer.java59 * Serializes the DOM node. Throws an exception only if an I/O
64 * @param node the DOM node to serialize
67 public void serialize(Node node) throws IOException; argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/graph/
H A DGraph.java32 NodeData getNodeData( Node node ) ;

Completed in 136 milliseconds

1234567891011>>