HomeSort by relevance Sort by last modified time
    Searched refs:NodeList (Results 1 - 25 of 794) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/w3c/dom/
NodeList.java 16 * The <code>NodeList</code> interface provides the abstraction of an ordered
18 * is implemented. <code>NodeList</code> objects in the DOM are live.
19 * <p>The items in the <code>NodeList</code> are accessible via an integral
23 public interface NodeList {
30 * <code>NodeList</code>, or <code>null</code> if that is not a valid
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeListBase.java 26 * NodeList interface wrapped around a DTM Iterator. The author
27 * considers this something of an abominations, since NodeList was not
34 * NodeList operating over the same document. In particular:
46 * promise to implement the DOM NodeList's "live view" response to
54 public class DTMNodeListBase implements org.w3c.dom.NodeList {
59 // org.w3c.dom.NodeList API follows
67 * <code>NodeList</code>, or <code>null</code> if that is not a valid
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodechildnodesempty.java 31 * The "getChildNodes()" method returns a NodeList
33 * are not any children, this is a NodeList that does not
37 * NodeList returned should not have any nodes.
65 NodeList elementList;
67 NodeList childList;
70 NodeList childNodesList;
nodelistindexgetlengthofemptylist.java 65 NodeList elementList;
67 NodeList employeeList;
70 NodeList textList;
hc_nodeappendchildgetnodename.java 65 NodeList elementList;
67 NodeList childList;
hc_nodechildnodesempty.java 31 * The "getChildNodes()" method returns a NodeList
33 * are not any children, this is a NodeList that does not
37 * NodeList returned should not have any nodes.
65 NodeList elementList;
66 NodeList childList;
hc_nodeclonefalsenocopytext.java 64 NodeList elementList;
66 NodeList childList;
hc_nodeclonenodefalse.java 37 * length of the NodeList are checked. The "getNodeName()"
66 NodeList elementList;
70 NodeList cloneChildren;
hc_nodelistindexgetlength.java 64 NodeList elementList;
66 NodeList employeeList;
hc_nodelistindexgetlengthofemptylist.java 65 NodeList emList;
68 NodeList textList;
hc_nodelistindexnotzero.java 66 NodeList elementList;
68 NodeList employeeList;
hc_nodelistreturnfirstitem.java 62 NodeList elementList;
64 NodeList employeeList;
nodeappendchildgetnodename.java 65 NodeList elementList;
67 NodeList childList;
nodeclonefalsenocopytext.java 65 NodeList elementList;
67 NodeList childList;
nodeclonenodefalse.java 37 * length of the NodeList are checked. The "getNodeName()"
67 NodeList elementList;
71 NodeList cloneChildren;
nodeclonetruecopytext.java 62 NodeList elementList;
63 NodeList childList;
nodegetfirstchildnull.java 64 NodeList elementList;
66 NodeList employeeList;
nodegetlastchildnull.java 64 NodeList elementList;
66 NodeList employeeList;
nodehaschildnodesfalse.java 65 NodeList elementList;
67 NodeList employeeIdList;
nodelistindexequalzero.java 61 NodeList elementList;
63 NodeList employeeList;
nodelistindexgetlength.java 60 NodeList elementList;
62 NodeList employeeList;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeListImpl.java 22 import org.w3c.dom.NodeList;
34 public class NodeListImpl implements NodeList {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttribute.java 5 import org.w3c.dom.NodeList;
51 NodeList elementList;
64 // NodeList elementList;
75 NodeList elementList;
86 NodeList elementList;
DocumentGetElementsByTagnameNS.java 6 import org.w3c.dom.NodeList;
12 * The method getElementsByTagNameNS returns a NodeList of all the Elements with
17 * values of namespaceURI=* and localName=*. This should return a nodeList of 1
64 NodeList childList;
78 NodeList childList;
90 NodeList childList;
98 NodeList childList;
108 NodeList childList;
  /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...]

Completed in 288 milliseconds

1 2 3 4 5 6 7 8 91011>>