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

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
H A DRSSFeedUpdateEntryTask.java215 NodeList nodelist = getNodeList(document, xpath);
216 // Process the elements in the nodelist
217 if (nodelist != null && nodelist.getLength()>0) {
218 for (int i=0; i<nodelist.getLength(); i++) {
219 Node node = (Node)nodelist.item(i);
223 aNode = (Attr)nodelist.item(i);
228 aNode = (Element)nodelist.item(i);
233 aNode = (Text)nodelist.item(i);
278 NodeList nodelist
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNodeSetForDOM.java101 * Cast result object to a nodelist. Always issues an error.
114 * Cast result object to a nodelist. Always issues an error.
120 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XNodeSetForDOM
123 ? (NodeList)m_origObj : super.nodelist();
H A DXNodeSet.java326 * Cast result object to a nodelist.
338 * Cast result object to a nodelist.
344 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XNodeSet
346 org.apache.xml.dtm.ref.DTMNodeList nodelist = new org.apache.xml.dtm.ref.DTMNodeList(this);
351 XNodeSet clone = (XNodeSet)nodelist.getDTMIterator();
353 return nodelist;
381 * Cast result object to a nodelist.
383 * @return The nodeset as a nodelist
403 * @return A fresh nodelist.
H A DXObject.java403 * Cast result object to a nodelist. Always issues an error.
430 * Cast result object to a nodelist. Always issues an error.
446 * Cast result object to a nodelist. Always issues an error.
452 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XObject
463 * Cast result object to a nodelist. Always issues an error.
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java64 * Create an empty nodelist.
85 * given nodelist into it.
87 * @param nodelist List of Nodes to be made members of the new set.
89 public NodeSet(NodeList nodelist) argument
94 addNodes(nodelist);
101 * @param nodelist Set of Nodes to be made members of the new set.
103 public NodeSet(NodeSet nodelist) argument
108 addNodes((NodeIterator) nodelist);
423 * Copy NodeList members into this nodelist, adding in
426 * @param nodelist Lis
431 addNodes(NodeList nodelist) argument
516 addNodesInDocOrder(NodeList nodelist, XPathContext support) argument
571 addNodesInDocOrder(int start, int end, int testIndex, NodeList nodelist, XPathContext support) argument
[all...]
H A DNodeSetDTM.java67 * Create an empty nodelist.
90 // * given nodelist into it.
92 // * @param nodelist List of Nodes to be made members of the new set.
94 // public NodeSetDTM(NodeList nodelist)
99 // addNodes(nodelist);
106 * @param nodelist Set of Nodes to be made members of the new set.
108 public NodeSetDTM(NodeSetDTM nodelist) argument
112 m_manager = nodelist.getDTMManager();
113 m_root = nodelist.getRoot();
115 addNodes((DTMIterator) nodelist);
[all...]
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.
H A DXPathAPI.java96 * Use an XPath string to select a nodelist.
112 * Use an XPath string to select a nodelist.
135 * Use an XPath string to select a nodelist.
151 * 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.
204 * @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.
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DJAXPExtensionsProvider.java135 // Explicitly getting NodeList by using nodelist()
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
186 // Explicitly getting NodeList by using nodelist()
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
H A DXPathExpressionImpl.java357 return resultObject.nodelist();
H A DXPathImpl.java329 return resultObject.nodelist();
/external/fio/
H A Doptions.c575 char *nodelist; local
581 nodelist = strchr(input, ':');
582 if (nodelist) {
584 *nodelist++ = '\0';
601 * Insist on a nodelist of one node only
603 if (nodelist) {
604 char *rest = nodelist;
618 * Default to online nodes with memory if no nodelist
620 if (!nodelist)
621 nodelist
[all...]

Completed in 379 milliseconds