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

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltSets.java54 * @param nl2 NodeList for second node-set.
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
63 if (nl2.getLength() == 0)
68 Node endNode = nl2.item(0);
89 * @param nl2 NodeList for second node-set.
91 * node in nl2; an empty node-set if the first node in nl2 i
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.java141 * @param nl2 NodeList for second 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);
157 * @param nl2 NodeList for second 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);
190 * @param nl2 NodeList for second node-set
191 * @return true if nl1 and nl2 contai
193 hasSameNodes(NodeList nl1, NodeList nl2) argument
[all...]

Completed in 1904 milliseconds