Searched refs:NodeList (Results 26 - 50 of 175) sorted by relevance

1234567

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/lib/
H A DExsltBase.java27 import org.w3c.dom.NodeList;
50 NodeList nodelist = n.getChildNodes();
H A DNodeInfo.java30 import org.w3c.dom.NodeList;
66 * @param nodeList a <code>NodeList</code> value
69 public static String systemId(NodeList nodeList)
114 * @param nodeList a <code>NodeList</code> value
117 public static String publicId(NodeList nodeList)
171 * @param nodeList a <code>NodeList</code> value
175 public static int lineNumber(NodeList nodeList)
229 * @param nodeList a <code>NodeList</code> value
233 public static int columnNumber(NodeList nodeList)
H A DExsltDynamic.java43 import org.w3c.dom.NodeList;
100 public static double max(ExpressionContext myContext, NodeList nl, String expr)
181 public static double min(ExpressionContext myContext, NodeList nl, String expr)
262 public static double sum(ExpressionContext myContext, NodeList nl, String expr)
364 public static NodeList map(ExpressionContext myContext, NodeList nl, String expr)
399 NodeList nodelist = null;
531 public static NodeList closure(ExpressionContext myContext, NodeList nl, String expr)
546 NodeList iterationLis
[all...]
H A DExsltStrings.java35 import org.w3c.dom.NodeList;
122 public static String concat(NodeList nl)
203 public static NodeList split(String str, String pattern)
245 public static NodeList split(String str)
283 public static NodeList tokenize(String toTokenize, String delims)
327 public static NodeList tokenize(String toTokenize)
/openjdk9/jaxp/src/java.xml/share/classes/org/w3c/dom/
H A DDocument.java219 * Returns a <code>NodeList</code> of all the <code>Elements</code> in
226 * @return A new <code>NodeList</code> object containing all the matched
229 public NodeList getElementsByTagName(String tagname);
490 * Returns a <code>NodeList</code> of all the <code>Elements</code> with a
496 * @return A new <code>NodeList</code> object containing all the matched
500 public NodeList getElementsByTagNameNS(String namespaceURI,
H A DElement.java184 * Returns a <code>NodeList</code> of all descendant <code>Elements</code>
190 public NodeList getElementsByTagName(String name);
338 * Returns a <code>NodeList</code> of all the descendant
345 * @return A new <code>NodeList</code> object containing all the matched
353 public NodeList getElementsByTagNameNS(String namespaceURI,
/openjdk9/jaxp/test/javax/xml/jaxp/functional/org/w3c/dom/ptests/
H A DTextTest.java38 import org.w3c.dom.NodeList;
58 NodeList nodeList = document.getElementsByTagName("p");
H A DNodeListTest.java33 import org.w3c.dom.NodeList;
41 * bound, the last element of a NodeList returns null. The bug has been fixed
56 NodeList nl = document.getElementsByTagName(nodeName);
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/parsers/
H A DBug6690015.java37 import org.w3c.dom.NodeList;
61 NodeList textnodes = root.getElementsByTagName("text");
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/transforms/params/
H A DXPathContainer.java30 import org.w3c.dom.NodeList;
58 NodeList nl = this.constructionElement.getChildNodes();
/openjdk9/jdk/test/javax/imageio/metadata/
H A DNthItemNodeListTest.java27 * @summary Test verifies that accessing nth item in NodeList doesn't throw
44 import org.w3c.dom.NodeList;
68 NodeList nodeList = root.
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DNodeList.java34 public abstract class NodeList<T extends Node> extends AbstractList<T> implements NodeIterable<T>, RandomAccess { class in inherits:AbstractList,NodeIterable,RandomAccess
43 protected NodeList(Node self) { method in class:NodeList
49 protected NodeList(Node self, int initialSize) { method in class:NodeList
56 protected NodeList(Node self, T[] elements) { method in class:NodeList
73 protected NodeList(Node self, List<? extends T> elements) { method in class:NodeList
90 protected NodeList(Node self, Collection<? extends NodeInterface> elements) { method in class:NodeList
193 void copy(NodeList<? extends Node> other) {
202 public boolean equals(NodeList<T> other) {
309 public void setAll(NodeList<T> values) {
411 private final NodeList<
[all...]
H A DNodeSuccessorList.java31 public final class NodeSuccessorList<T extends Node> extends NodeList<T> {
H A DNodeInputList.java32 public final class NodeInputList<T extends Node> extends NodeList<T> {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/
H A DDOM.java27 import org.w3c.dom.NodeList;
82 public NodeList makeNodeList(int index);
83 public NodeList makeNodeList(DTMAxisIterator iter);
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultElement.java27 import org.w3c.dom.NodeList;
71 public NodeList getElementsByTagName(String name) {
86 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
H A DDefaultDocument.java31 import org.w3c.dom.NodeList;
76 public NodeList getElementsByTagName(String tagname) {
81 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/
H A DXPathAPI.java32 import org.w3c.dom.NodeList;
145 public static NodeList selectNodeList(Node contextNode, String str)
162 public static NodeList selectNodeList(
170 // Return a NodeList.
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DJDKXPathAPI.java35 import org.w3c.dom.NodeList;
60 public NodeList selectNodeList(
82 return (NodeList)xpathExpression.evaluate(contextNode, XPathConstants.NODESET);
/openjdk9/jdk/test/javax/imageio/plugins/bmp/
H A DBMPPixelSpacingTest.java41 import org.w3c.dom.NodeList;
72 NodeList nl = rootNode.getChildNodes();
79 NodeList cl = node.getChildNodes();
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/objects/
H A DXRTreeFrag.java32 import org.w3c.dom.NodeList;
238 public NodeList convertToNodeset()
241 if (m_obj instanceof NodeList)
242 return (NodeList) m_obj;
/openjdk9/jdk/test/javax/xml/jaxp/parsers/8027359/
H A DXML11EntityScannerTest.java170 final NodeList trustList = trustListElement.getElementsByTagName("Trust");
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/java/
H A DNewMultiArrayNode.java32 import org.graalvm.compiler.graph.NodeList;
60 public NodeList<ValueNode> dimensions() {
/openjdk9/langtools/test/jdk/javadoc/tool/sampleapi/lib/sampleapi/generator/
H A DModuleGenerator.java44 import org.w3c.dom.NodeList;
82 NodeList exportsList = rootElement.getElementsByTagName("exports");
86 NodeList toList = exportsEl.getElementsByTagName("to");
94 NodeList opensList = rootElement.getElementsByTagName("opens");
98 NodeList toList = opensEl.getElementsByTagName("to");
106 NodeList requiresList = rootElement.getElementsByTagName("requires");
114 NodeList usesList = rootElement.getElementsByTagName("uses");
120 NodeList providesList = rootElement.getElementsByTagName("provides");
124 NodeList implList = providesEl.getElementsByTagName("implementation");
132 NodeList packagesLis
[all...]
/openjdk9/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMUtils.java37 import org.w3c.dom.NodeList;
235 * <code>NodeList</code>.
237 * @param nl the NodeList
240 public static Set<Node> nodeSet(NodeList nl) {
245 private NodeList nl;
246 public NodeSet(NodeList nl) {
305 NodeList children = node.getChildNodes();

Completed in 271 milliseconds

1234567