HomeSort by relevance Sort by last modified time
    Searched defs:nodelist (Results 1 - 10 of 10) sorted by null

  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSetForDOM.java 28 import org.w3c.dom.NodeList;
33 * Node object, NodeList object, or NodeIterator.
61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)
64 m_origObj = nodeList;
69 // m_obj=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
101 * 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.TransformerExceptio method in class:XNodeSetForDOM
    [all...]
XObject.java 38 import org.w3c.dom.NodeList;
403 * Cast result object to a nodelist. Always issues an error.
413 new Object[]{ getTypeString() }); //"Can not convert "+getTypeString()+" to a NodeList!");
430 * Cast result object to a nodelist. Always issues an error.
440 new Object[]{ getTypeString() }); //"Can not convert "+getTypeString()+" to a NodeList!");
446 * Cast result object to a nodelist. Always issues an error.
452 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XObject
456 new Object[]{ getTypeString() }); //"Can not convert "+getTypeString()+" to a NodeList!");
463 * Cast result object to a nodelist. Always issues an error
    [all...]
XNodeSet.java 30 import org.w3c.dom.NodeList;
326 * Cast result object to a nodelist.
338 * Cast result object to a nodelist.
340 * @return 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); local
351 XNodeSet clone = (XNodeSet)nodelist.getDTMIterator();
353 return nodelist;
381 * Cast result object to a nodelist
    [all...]
  /external/chromium_org/third_party/libxslt/libexslt/
saxon.c 209 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/
functions.c 402 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->nodeTab[i])
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedUpdateEntryTask.java 38 import org.w3c.dom.NodeList;
215 NodeList nodelist = getNodeList(document, xpath); local
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)
278 NodeList nodelist = getNodeList(document, xpath.substring(0, xpath.lastIndexOf("\/"))); local
297 NodeList nodelist = null; local
    [all...]
  /external/libxslt/libxslt/
functions.c 402 xmlNodeSetPtr nodelist = NULL; local
524 nodelist = xsltGetKey(tctxt, key, keyURI, value);
529 xmlXPathNodeSetMerge(NULL, nodelist)));
664 xmlNodeSetPtr nodelist; local
674 nodelist = obj->nodesetval;
675 if ((nodelist == NULL) || (nodelist->nodeNr <= 0)) {
680 cur = nodelist->nodeTab[0];
681 for (i = 1;i < nodelist->nodeNr;i++) {
682 ret = xmlXPathCmpNodes(cur, nodelist->nodeTab[i])
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 38 import org.w3c.dom.NodeList;
341 NodeList nodelist = node.getChildNodes(); local
343 for (int i = 0; i < nodelist.getLength(); i++) {
344 nodes.add(nodelist.item(i));
394 NodeList children = elem.getChildNodes();
  /system/core/sh/
nodes.h 52 struct nodelist *cmdlist;
98 struct nodelist *backquote;
152 struct nodelist { struct
153 struct nodelist *next;
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 243 milliseconds