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

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DDOM2Helper.java231 public static boolean isNodeAfter(Node node1, Node node2) method in class:DOM2Helper
246 // isNodeAfter will return true if node is after countedNode
247 // in document order. The base isNodeAfter is sloooow (relatively).
248 return DOMHelper.isNodeAfter(node1, node2);
H A DDOMHelper.java199 public static boolean isNodeAfter(Node node1, Node node2) method in class:DOMHelper
205 boolean isNodeAfter = true;
214 isNodeAfter = isNodeAfterSibling(parent1, node1, node2);
224 //return isNodeAfter;
237 // and we return the default value of isNodeAfter.
294 isNodeAfter = (nParents1 < nParents2) ? true : false;
301 isNodeAfter = isNodeAfterSibling(startNode1, prevChild1,
323 ", isNodeAfter = "+isNodeAfter); */
324 return isNodeAfter;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltSets.java75 if (DOMHelper.isNodeAfter(testNode, endNode)
110 if (DOMHelper.isNodeAfter(startNode, testNode)
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTM.java745 public boolean isNodeAfter(int firstNodeHandle, int secondNodeHandle); method in interface:DTM
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java595 if (!DOM2Helper.isNodeAfter(node, child))
661 if (!DOM2Helper.isNodeAfter(node, child))
H A DNodeSetDTM.java755 // if (!support.getDOMHelper().isNodeAfter(node, child))
822 if (!dtm.isNodeAfter(node, child))
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DUnionPathIterator.java421 if (dtm.isNodeAfter(node, earliestNode))
H A DNodeSequence.java755 if (!dtm.isNodeAfter(node, child))
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAdaptiveResultTreeImpl.java1151 public boolean isNodeAfter(int firstNodeHandle, int secondNodeHandle) method in class:AdaptiveResultTreeImpl
1154 return _dom.isNodeAfter(firstNodeHandle, secondNodeHandle);
1157 return super.isNodeAfter(firstNodeHandle, secondNodeHandle);
H A DSimpleResultTreeImpl.java923 public boolean isNodeAfter(int firstNodeHandle, int secondNodeHandle) method in class:SimpleResultTreeImpl
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBase.java2113 public boolean isNodeAfter(int nodeHandle1, int nodeHandle2) method in class:DTMDefaultBase
H A DDTMDocumentImpl.java1952 public boolean isNodeAfter(int nodeHandle1, int nodeHandle2) {return false;} method in class:DTMDocumentImpl

Completed in 114 milliseconds