Searched refs:isNodeAfter (Results 1 - 11 of 11) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOM2Helper.java229 public static boolean isNodeAfter(Node node1, Node node2) method in class:DOM2Helper
244 // isNodeAfter will return true if node is after countedNode
245 // in document order. The base isNodeAfter is sloooow (relatively).
246 return DOMHelper.isNodeAfter(node1, node2);
H A DDOMHelper.java204 public static boolean isNodeAfter(Node node1, Node node2) method in class:DOMHelper
210 boolean isNodeAfter = true;
219 isNodeAfter = isNodeAfterSibling(parent1, node1, node2);
229 //return isNodeAfter;
242 // and we return the default value of isNodeAfter.
299 isNodeAfter = (nParents1 < nParents2) ? true : false;
306 isNodeAfter = isNodeAfterSibling(startNode1, prevChild1,
328 ", isNodeAfter = "+isNodeAfter); */
329 return isNodeAfter;
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DCounter.java138 if (dtm.isNodeAfter(countedNode, node))
H A DNodeSorter.java272 result = dtm.isNodeAfter(n1.m_node, n2.m_node) ? -1 : 1;
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java743 public boolean isNodeAfter(int firstNodeHandle, int secondNodeHandle); method in interface:DTM
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java593 if (!DOM2Helper.isNodeAfter(node, child))
659 if (!DOM2Helper.isNodeAfter(node, child))
H A DNodeSetDTM.java753 // if (!support.getDOMHelper().isNodeAfter(node, child))
820 if (!dtm.isNodeAfter(node, child))
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DNodeSequence.java746 if (!dtm.isNodeAfter(node, child))
H A DUnionPathIterator.java419 if (dtm.isNodeAfter(node, earliestNode))
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java2113 public boolean isNodeAfter(int nodeHandle1, int nodeHandle2) method in class:DTMDefaultBase
H A DDTMDocumentImpl.java1950 public boolean isNodeAfter(int nodeHandle1, int nodeHandle2) {return false;} method in class:DTMDocumentImpl

Completed in 128 milliseconds