• 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 defs:nodes1

4321  * @nodes1:  a node-set
4327 * Returns the difference between the two node sets, or nodes1 if
4331 xmlXPathDifference (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4337 return(nodes1);
4340 if (xmlXPathNodeSetIsEmpty(nodes1))
4343 l1 = xmlXPathNodeSetGetLength(nodes1);
4346 cur = xmlXPathNodeSetItem(nodes1, i);
4355 * @nodes1: a node-set
4365 xmlXPathIntersection (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4370 if (xmlXPathNodeSetIsEmpty(nodes1))
4375 l1 = xmlXPathNodeSetGetLength(nodes1);
4378 cur = xmlXPathNodeSetItem(nodes1, i);
4446 * @nodes1: a node-set
4452 * Returns true (1) if @nodes1 shares any node with @nodes2, false (0)
4456 xmlXPathHasSameNodes (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4460 if (xmlXPathNodeSetIsEmpty(nodes1) ||
4464 l = xmlXPathNodeSetGetLength(nodes1);
4466 cur = xmlXPathNodeSetItem(nodes1, i);
4531 * @nodes1: 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) {
4544 return(nodes1);
4545 return(xmlXPathNodeLeadingSorted(nodes1,
4551 * @nodes1: 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) {
4566 return(nodes1);
4567 if (xmlXPathNodeSetIsEmpty(nodes1))
4569 xmlXPathNodeSetSort(nodes1);
4571 return(xmlXPathNodeLeadingSorted(nodes1,
4633 * @nodes1: 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) {
4646 return(nodes1);
4647 return(xmlXPathNodeTrailingSorted(nodes1,
4653 * @nodes1: 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) {
4668 return(nodes1);
4669 if (xmlXPathNodeSetIsEmpty(nodes1))
4671 xmlXPathNodeSetSort(nodes1);
4673 return(xmlXPathNodeTrailingSorted(nodes1,