• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/

Lines Matching refs:nodes2

4322  * @nodes2:  a node-set
4328 * nodes2 is empty
4331 xmlXPathDifference (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4336 if (xmlXPathNodeSetIsEmpty(nodes2))
4347 if (!xmlXPathNodeSetContains(nodes2, cur))
4356 * @nodes2: a node-set
4365 xmlXPathIntersection (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4372 if (xmlXPathNodeSetIsEmpty(nodes2))
4379 if (xmlXPathNodeSetContains(nodes2, cur))
4447 * @nodes2: a node-set
4452 * Returns true (1) if @nodes1 shares any node with @nodes2, false (0)
4456 xmlXPathHasSameNodes (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4461 xmlXPathNodeSetIsEmpty(nodes2))
4467 if (xmlXPathNodeSetContains(nodes2, cur))
4532 * @nodes2: a node-set, sorted by document order
4537 * Returns the nodes in @nodes1 that precede the first node in @nodes2
4538 * in document order, @nodes1 if @nodes2 is NULL or empty or
4539 * an empty node-set if @nodes1 doesn't contain @nodes2
4542 xmlXPathLeadingSorted (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4543 if (xmlXPathNodeSetIsEmpty(nodes2))
4546 xmlXPathNodeSetItem(nodes2, 1)));
4552 * @nodes2: a node-set
4556 * @nodes1 and @nodes2 are sorted by document order, then
4559 * Returns the nodes in @nodes1 that precede the first node in @nodes2
4560 * in document order, @nodes1 if @nodes2 is NULL or empty or
4561 * an empty node-set if @nodes1 doesn't contain @nodes2
4564 xmlXPathLeading (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4565 if (xmlXPathNodeSetIsEmpty(nodes2))
4570 xmlXPathNodeSetSort(nodes2);
4572 xmlXPathNodeSetItem(nodes2, 1)));
4634 * @nodes2: a node-set, sorted by document order
4639 * Returns the nodes in @nodes1 that follow the first node in @nodes2
4640 * in document order, @nodes1 if @nodes2 is NULL or empty or
4641 * an empty node-set if @nodes1 doesn't contain @nodes2
4644 xmlXPathTrailingSorted (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4645 if (xmlXPathNodeSetIsEmpty(nodes2))
4648 xmlXPathNodeSetItem(nodes2, 0)));
4654 * @nodes2: a node-set
4658 * @nodes1 and @nodes2 are sorted by document order, then
4661 * Returns the nodes in @nodes1 that follow the first node in @nodes2
4662 * in document order, @nodes1 if @nodes2 is NULL or empty or
4663 * an empty node-set if @nodes1 doesn't contain @nodes2
4666 xmlXPathTrailing (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4667 if (xmlXPathNodeSetIsEmpty(nodes2))
4672 xmlXPathNodeSetSort(nodes2);
4674 xmlXPathNodeSetItem(nodes2, 0)));