Searched refs:nodelist (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltBase.java51 NodeList nodelist = n.getChildNodes();
53 for (int i = 0; i < nodelist.getLength(); i++)
55 Node childNode = nodelist.item(i);
H A DExsltDynamic.java400 NodeList nodelist = null;
401 nodelist = ((XNodeSet)object).nodelist();
403 for (int k = 0; k < nodelist.getLength(); k++)
405 Node n = nodelist.item(k);
571 NodeList nodelist = null;
572 nodelist = ((XNodeSet)object).nodelist();
574 for (int k = 0; k < nodelist.getLength(); k++)
576 Node n = nodelist
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNodeSetForDOM.java103 * Cast result object to a nodelist. Always issues an error.
116 * Cast result object to a nodelist. Always issues an error.
122 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XNodeSetForDOM
125 ? (NodeList)m_origObj : super.nodelist();
H A DXNodeSet.java328 * Cast result object to a nodelist.
340 * Cast result object to a nodelist.
346 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XNodeSet
348 com.sun.org.apache.xml.internal.dtm.ref.DTMNodeList nodelist = new com.sun.org.apache.xml.internal.dtm.ref.DTMNodeList(this);
353 XNodeSet clone = (XNodeSet)nodelist.getDTMIterator();
355 return nodelist;
383 * Cast result object to a nodelist.
385 * @return The nodeset as a nodelist
405 * @return A fresh nodelist.
H A DXObject.java405 * Cast result object to a nodelist. Always issues an error.
432 * Cast result object to a nodelist. Always issues an error.
448 * Cast result object to a nodelist. Always issues an error.
454 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XObject
465 * Cast result object to a nodelist. Always issues an error.
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java66 * Create an empty nodelist.
87 * given nodelist into it.
89 * @param nodelist List of Nodes to be made members of the new set.
91 public NodeSet(NodeList nodelist) argument
96 addNodes(nodelist);
103 * @param nodelist Set of Nodes to be made members of the new set.
105 public NodeSet(NodeSet nodelist) argument
110 addNodes((NodeIterator) nodelist);
425 * Copy NodeList members into this nodelist, adding in
428 * @param nodelist Lis
433 addNodes(NodeList nodelist) argument
518 addNodesInDocOrder(NodeList nodelist, XPathContext support) argument
573 addNodesInDocOrder(int start, int end, int testIndex, NodeList nodelist, XPathContext support) argument
[all...]
H A DNodeSetDTM.java69 * Create an empty nodelist.
92 // * given nodelist into it.
94 // * @param nodelist List of Nodes to be made members of the new set.
96 // public NodeSetDTM(NodeList nodelist)
101 // addNodes(nodelist);
108 * @param nodelist Set of Nodes to be made members of the new set.
110 public NodeSetDTM(NodeSetDTM nodelist) argument
114 m_manager = nodelist.getDTMManager();
115 m_root = nodelist.getRoot();
117 addNodes((DTMIterator) nodelist);
[all...]
H A DXPathAPI.java98 * Use an XPath string to select a nodelist.
114 * Use an XPath string to select a nodelist.
137 * Use an XPath string to select a nodelist.
153 * Use an XPath string to select a nodelist.
172 return list.nodelist();
180 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
206 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
256 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
H A DCachedXPathAPI.java151 * Use an XPath string to select a nodelist.
167 * Use an XPath string to select a nodelist.
190 * Use an XPath string to select a nodelist.
206 * Use an XPath string to select a nodelist.
225 return list.nodelist();
233 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
259 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
308 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/jaxp/
H A DJAXPExtensionsProvider.java137 // Explicitly getting NodeList by using nodelist()
139 argList.add ( i, ((XNodeSet)argument).nodelist() );
188 // Explicitly getting NodeList by using nodelist()
190 argList.add ( i, ((XNodeSet)argument).nodelist() );
H A DXPathExpressionImpl.java360 return resultObject.nodelist();
H A DXPathImpl.java318 return resultObject.nodelist();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXPathFuncHereAPI.java100 * Use an XPath string to select a nodelist.
115 * Use an XPath string to select a nodelist.
137 * Use an XPath string to select a nodelist.
152 * Use an XPath string to select a nodelist.
170 return list.nodelist();
178 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
203 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
257 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
H A DCachedXPathFuncHereAPI.java150 * Use an XPath string to select a nodelist.
165 * Use an XPath string to select a nodelist.
188 * Use an XPath string to select a nodelist.
204 * Use an XPath string to select a nodelist.
223 return list.nodelist();
231 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
258 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
323 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java388 List<Node> nodelist = targetNodes.get(bindings);
390 if(nodelist == null) {
394 for (Node target : nodelist) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathResultImpl.java158 // If it's a snapshot type, get the nodelist
162 m_list = m_resultObj.nodelist();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java1135 org.w3c.dom.NodeList nodelist = new org.w3c.dom.NodeList() {
1148 return nodeList2Iterator(nodelist, translet, dom);

Completed in 81 milliseconds