Home
last modified time | relevance | path

Searched refs:DTMNodeProxy (Results 1 – 4 of 4) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java63 public class DTMNodeProxy class
86 public DTMNodeProxy(DTM dtm, int node) in DTMNodeProxy() method in DTMNodeProxy
124 DTMNodeProxy dtmp = (DTMNodeProxy) node; in equals()
170 if (!(other instanceof DTMNodeProxy)) in sameNodeAs()
173 DTMNodeProxy that = (DTMNodeProxy) other; in sameNodeAs()
DDTMManagerDefault.java496 if (node instanceof org.apache.xml.dtm.ref.DTMNodeProxy) in getDTMHandleFromNode()
497 return ((org.apache.xml.dtm.ref.DTMNodeProxy) node).getDTMNodeNumber(); in getDTMHandleFromNode()
DDTMDefaultBase.java2218 return new DTMNodeProxy(this, nodeHandle); in getNode()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMHelper.java31 import org.apache.xml.dtm.ref.DTMNodeProxy;
341 if (node1 instanceof DTMNodeProxy && node2 instanceof DTMNodeProxy) in isNodeTheSame()
342 return ((DTMNodeProxy)node1).equals((DTMNodeProxy)node2); in isNodeTheSame()