Searched refs:isNodeAfter (Results 1 - 11 of 11) sorted by relevance
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
H A D | DOM2Helper.java | 229 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 D | DOMHelper.java | 204 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 D | Counter.java | 138 if (dtm.isNodeAfter(countedNode, node))
|
H A D | NodeSorter.java | 272 result = dtm.isNodeAfter(n1.m_node, n2.m_node) ? -1 : 1;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
H A D | DTM.java | 743 public boolean isNodeAfter(int firstNodeHandle, int secondNodeHandle); method in interface:DTM
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
H A D | NodeSet.java | 593 if (!DOM2Helper.isNodeAfter(node, child)) 659 if (!DOM2Helper.isNodeAfter(node, child))
|
H A D | NodeSetDTM.java | 753 // if (!support.getDOMHelper().isNodeAfter(node, child)) 820 if (!dtm.isNodeAfter(node, child))
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
H A D | NodeSequence.java | 746 if (!dtm.isNodeAfter(node, child))
|
H A D | UnionPathIterator.java | 419 if (dtm.isNodeAfter(node, earliestNode))
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
H A D | DTMDefaultBase.java | 2113 public boolean isNodeAfter(int nodeHandle1, int nodeHandle2) method in class:DTMDefaultBase
|
H A D | DTMDocumentImpl.java | 1950 public boolean isNodeAfter(int nodeHandle1, int nodeHandle2) {return false;} method in class:DTMDocumentImpl
|
Completed in 611 milliseconds