Searched refs:NodeList (Results 1 - 25 of 175) sorted by relevance

1234567

/openjdk9/jaxp/src/java.xml/share/classes/org/w3c/dom/
H A DNodeList.java45 * The <code>NodeList</code> interface provides the abstraction of an ordered
47 * is implemented. <code>NodeList</code> objects in the DOM are live.
48 * <p>The items in the <code>NodeList</code> are accessible via an integral
52 public interface NodeList { interface
59 * <code>NodeList</code>, or <code>null</code> if that is not a valid
/openjdk9/jdk/test/javax/xml/jaxp/parsers/8024707/
H A DTestFunc.java25 import org.w3c.dom.NodeList;
32 public static Node test( NodeList list ) {
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DDocumentExtFunc.java27 import org.w3c.dom.NodeList;
31 public static String test(NodeList list) {
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/util/xml/
H A DNodeListIterator.java30 import org.w3c.dom.NodeList;
37 protected NodeList _list;
40 public NodeListIterator(NodeList list) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/lib/
H A DExsltSets.java30 import org.w3c.dom.NodeList;
53 * @param nl1 NodeList for first node-set.
54 * @param nl2 NodeList for second node-set.
55 * @return a NodeList containing the nodes in nl1 that precede in document order the first
61 public static NodeList leading (NodeList nl1, NodeList nl2)
88 * @param nl1 NodeList for first node-set.
89 * @param nl2 NodeList for second node-set.
90 * @return a NodeList containin
[all...]
H A DExtensions.java38 import org.w3c.dom.NodeList;
127 * @param nl1 NodeList for first node-set
128 * @param nl2 NodeList for second node-set
129 * @return a NodeList containing the nodes in nl1 that are also in nl2
135 public static NodeList intersection(NodeList nl1, NodeList nl2)
143 * @param nl1 NodeList for first node-set
144 * @param nl2 NodeList for second node-set
145 * @return a NodeList containin
[all...]
H A DExsltMath.java27 import org.w3c.dom.NodeList;
64 * @param nl The NodeList for the node-set to be evaluated.
70 public static double max (NodeList nl)
99 * @param nl The NodeList for the node-set to be evaluated.
105 public static double min (NodeList nl)
136 * @param nl The NodeList for the node-set to be evaluated.
141 public static NodeList highest (NodeList nl)
172 * @param nl The NodeList for the node-set to be evaluated.
178 public static NodeList lowes
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DNodeListImpl.java30 import org.w3c.dom.NodeList;
39 public class NodeListImpl implements NodeList {
43 private final NodeList nodeList;
45 public NodeListImpl(SOAPDocumentImpl soapDocument, NodeList nodeList) {
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DSerializer.java28 import org.w3c.dom.NodeList;
53 * <code>NodeList</code>.
55 * @param content the <code>NodeList</code> to serialize.
57 * <code>NodeList</code>.
60 byte[] serializeToByteArray(NodeList content) throws Exception;
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXPathAPI.java28 import org.w3c.dom.NodeList;
47 NodeList selectNodeList(
H A DHelperNodeList.java30 import org.w3c.dom.NodeList;
35 public class HelperNodeList implements NodeList {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeListBase.java27 * NodeList interface wrapped around a DTM Iterator. The author
28 * considers this something of an abominations, since NodeList was not
35 * NodeList operating over the same document. In particular:
47 * promise to implement the DOM NodeList's "live view" response to
55 public class DTMNodeListBase implements org.w3c.dom.NodeList {
60 // org.w3c.dom.NodeList API follows
68 * <code>NodeList</code>, or <code>null</code> if that is not a valid
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/objects/
H A DXNodeSetForDOM.java29 import org.w3c.dom.NodeList;
34 * Node object, NodeList object, or NodeIterator.
62 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)
121 public NodeList nodelist() throws javax.xml.transform.TransformerException
123 return (m_origObj instanceof NodeList)
124 ? (NodeList)m_origObj : super.nodelist();
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformXPath2Filter.java52 import org.w3c.dom.NodeList;
86 List<NodeList> unionNodes = new ArrayList<NodeList>();
87 List<NodeList> subtractNodes = new ArrayList<NodeList>();
88 List<NodeList> intersectNodes = new ArrayList<NodeList>();
121 NodeList subtreeRoots =
173 XPath2NodeFilter(List<NodeList> unionNodes, List<NodeList> subtractNode
[all...]
/openjdk9/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/html/
H A DHTMLDocument.java45 import org.w3c.dom.NodeList;
183 public NodeList getElementsByName(String elementName);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/util/
H A DDOMUtils.java42 import org.w3c.dom.NodeList;
54 NodeList children = parent.getChildNodes();
69 NodeList children = parent.getChildNodes();
84 NodeList children = parent.getChildNodes();
105 NodeList children = parent.getElementsByTagName(name);
112 NodeList children = parent.getElementsByTagNameNS(qname.getNamespaceURI(), qname.getLocalPart());
120 NodeList children = parent.getElementsByTagNameNS(namespaceURI, localName);
126 public static Element[] getElements(NodeList children) {
/openjdk9/jaxp/test/javax/xml/jaxp/functional/org/w3c/dom/ptests/
H A DEntityChildTest.java37 import org.w3c.dom.NodeList;
58 NodeList n = root.getElementsByTagName("table");
59 NodeList nl = n.item(0).getChildNodes();
H A DDocumentTest.java42 import org.w3c.dom.NodeList;
101 * Verify the NodeList from getElementsByTagNameNS.
106 NodeList nodeList = document.getElementsByTagNameNS("urn:BooksAreUs.org:BookInfo", localName);
147 NodeList nodeList = document.getElementsByTagNameNS("http://www.w3.org/TR/REC-html40", "body");
148 NodeList childList = nodeList.item(0).getChildNodes();
162 NodeList nodeList = document.getElementsByTagNameNS("http://www.w3.org/TR/REC-html40", "body");
163 NodeList childList = nodeList.item(0).getChildNodes();
H A DNamedNodeMapTest.java35 import org.w3c.dom.NodeList;
54 NodeList nodeList = document.getElementsByTagName("body");
90 NodeList nodeList = document.getElementsByTagName("body");
106 NodeList nodeList = document.getElementsByTagName("body");
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/jaxp/
H A DXPathNodesImpl.java33 import org.w3c.dom.NodeList;
41 NodeList nodeList = null;
43 public XPathNodesImpl(NodeList nodeList, Class<Node> elementType) {
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DEdges.java70 public static NodeList<Node> getNodeListUnsafe(Node node, long offset) {
71 return (NodeList<Node>) UNSAFE.getObject(node, offset);
78 private static void putNodeListUnsafe(Node node, long offset, NodeList<?> value) {
84 * another {@link Node}. An indirect edge goes via a {@link NodeList}.
102 * Gets the {@link NodeList} at the end point of a {@linkplain #getDirectCount() direct} edge.
107 * @return the {@link NodeList} at the other edge of the requested edge
109 public static NodeList<Node> getNodeList(Node node, long[] offsets, int index) {
130 NodeList<Node> list = getNodeList(node, curOffsets, index);
133 NodeList<Node> newList = curType == Edges.Type.Inputs ? new NodeInputList<>(node, size) : new NodeSuccessorList<>(node, size);
154 NodeList<Nod
[all...]
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/dom/
H A DCR6333993Test.java39 import org.w3c.dom.NodeList;
47 * @summary Test NodeList.item(valid index) returns value after NodeList.item(NodeList.getLength()).
68 NodeList testNodes = (NodeList) expr.evaluate(testDoc, XPathConstants.NODESET);
74 // Access past the end of the NodeList correctly returns null
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/validation/
H A DJaxpIssue43Test.java45 import org.w3c.dom.NodeList;
77 NodeList typesList = e.getElementsByTagNameNS("http://schemas.xmlsoap.org/wsdl/", "types");
78 NodeList schemaList = ((Element) typesList.item(0)).getElementsByTagNameNS("http://www.w3.org/2001/XMLSchema", "schema");
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/c14n/
H A DCanonicalizerSpi.java36 import org.w3c.dom.NodeList;
85 public byte[] engineCanonicalizeXPathNodeSet(NodeList xpathNodeSet)
100 public byte[] engineCanonicalizeXPathNodeSet(NodeList xpathNodeSet, String inclusiveNamespaces)
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DDOMUtil.java33 import org.w3c.dom.NodeList;
50 NodeList l = e.getChildNodes();
86 NodeList l = e.getChildNodes();
97 NodeList l = e.getChildNodes();

Completed in 109 milliseconds

1234567