Searched refs:nl1 (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltSets.java53 * @param nl1 NodeList for first node-set.
55 * @return a NodeList containing the nodes in nl1 that precede in document order the first
56 * node in nl2; an empty node-set if the first node in nl2 is not in nl1; all of nl1 if nl2
61 public static NodeList leading (NodeList nl1, NodeList nl2) argument
64 return nl1;
66 NodeSet ns1 = new NodeSet(nl1);
72 for (int i = 0; i < nl1.getLength(); i++)
74 Node testNode = nl1.item(i);
88 * @param nl1 NodeLis
96 trailing(NodeList nl1, NodeList nl2) argument
128 intersection(NodeList nl1, NodeList nl2) argument
158 difference(NodeList nl1, NodeList nl2) argument
227 hasSameNode(NodeList nl1, NodeList nl2) argument
[all...]
H A DExtensions.java140 * @param nl1 NodeList for first node-set
142 * @return a NodeList containing the nodes in nl1 that are also in nl2
148 public static NodeList intersection(NodeList nl1, NodeList nl2) argument
150 return ExsltSets.intersection(nl1, nl2);
156 * @param nl1 NodeList for first node-set
158 * @return a NodeList containing the nodes in nl1 that are not in nl2
164 public static NodeList difference(NodeList nl1, NodeList nl2) argument
166 return ExsltSets.difference(nl1, nl2);
189 * @param nl1 NodeList for first node-set
191 * @return true if nl1 an
193 hasSameNodes(NodeList nl1, NodeList nl2) argument
[all...]

Completed in 1903 milliseconds