Searched defs:isNodeTheSame (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DDOMHelper.java201 if (node1 == node2 || isNodeTheSame(node1, node2))
211 if (parent1 == parent2 || isNodeTheSame(parent1, parent2)) // then we know they are siblings
288 if (startNode1 == startNode2 || isNodeTheSame(startNode1, startNode2)) // common parent?
334 public static boolean isNodeTheSame(Node node1, Node node2) method in class:DOMHelper
389 if (child1 == child || isNodeTheSame(child1, child))
400 else if (child2 == child || isNodeTheSame(child2, child))
433 if (child1 == child || isNodeTheSame(child1, child))
444 else if (child2 == child || isNodeTheSame(child2, child))

Completed in 31 milliseconds