Searched defs:nodelist (Results 1 - 8 of 8) sorted by relevance

/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/chromium_org/third_party/libxslt/libexslt/
H A Dsaxon.c209 xmlNodeSetPtr nodelist; local
220 nodelist = obj->nodesetval;
221 if ((nodelist == NULL) || (nodelist->nodeNr <= 0)) {
226 cur = nodelist->nodeTab[0];
227 for (i = 1;i < nodelist->nodeNr;i++) {
228 int ret = xmlXPathCmpNodes(cur, nodelist->nodeTab[i]);
230 cur = nodelist->nodeTab[i];
/external/chromium_org/third_party/libxslt/libxslt/
H A Dfunctions.c402 xmlNodeSetPtr nodelist = NULL; local
524 nodelist = xsltGetKey(tctxt, key, keyURI, value);
529 xmlXPathNodeSetMerge(NULL, nodelist)));
665 xmlNodeSetPtr nodelist; local
675 nodelist = obj->nodesetval;
676 if ((nodelist == NULL) || (nodelist->nodeNr <= 0)) {
681 cur = nodelist->nodeTab[0];
682 for (i = 1;i < nodelist->nodeNr;i++) {
683 ret = xmlXPathCmpNodes(cur, nodelist
[all...]
/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...]
/external/fio/
H A Doptions.c586 char *nodelist; local
592 nodelist = strchr(input, ':');
593 if (nodelist) {
595 *nodelist++ = '\0';
612 * Insist on a nodelist of one node only
614 if (nodelist) {
615 char *rest = nodelist;
629 * Default to online nodes with memory if no nodelist
631 if (!nodelist)
632 nodelist
[all...]

Completed in 204 milliseconds