• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:nodes1

4344  * @nodes1:  a node-set
4350 * Returns the difference between the two node sets, or nodes1 if
4354 xmlXPathDifference (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4360 return(nodes1);
4363 if (xmlXPathNodeSetIsEmpty(nodes1))
4366 l1 = xmlXPathNodeSetGetLength(nodes1);
4369 cur = xmlXPathNodeSetItem(nodes1, i);
4378 * @nodes1: a node-set
4388 xmlXPathIntersection (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4395 if (xmlXPathNodeSetIsEmpty(nodes1))
4400 l1 = xmlXPathNodeSetGetLength(nodes1);
4403 cur = xmlXPathNodeSetItem(nodes1, i);
4473 * @nodes1: a node-set
4479 * Returns true (1) if @nodes1 shares any node with @nodes2, false (0)
4483 xmlXPathHasSameNodes (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4487 if (xmlXPathNodeSetIsEmpty(nodes1) ||
4491 l = xmlXPathNodeSetGetLength(nodes1);
4493 cur = xmlXPathNodeSetItem(nodes1, i);
4560 * @nodes1: a node-set, sorted by document order
4566 * Returns the nodes in @nodes1 that precede the first node in @nodes2
4567 * in document order, @nodes1 if @nodes2 is NULL or empty or
4568 * an empty node-set if @nodes1 doesn't contain @nodes2
4571 xmlXPathLeadingSorted (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4573 return(nodes1);
4574 return(xmlXPathNodeLeadingSorted(nodes1,
4580 * @nodes1: a node-set
4585 * @nodes1 and @nodes2 are sorted by document order, then
4588 * Returns the nodes in @nodes1 that precede the first node in @nodes2
4589 * in document order, @nodes1 if @nodes2 is NULL or empty or
4590 * an empty node-set if @nodes1 doesn't contain @nodes2
4593 xmlXPathLeading (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4595 return(nodes1);
4596 if (xmlXPathNodeSetIsEmpty(nodes1))
4598 xmlXPathNodeSetSort(nodes1);
4600 return(xmlXPathNodeLeadingSorted(nodes1,
4665 * @nodes1: a node-set, sorted by document order
4671 * Returns the nodes in @nodes1 that follow the first node in @nodes2
4672 * in document order, @nodes1 if @nodes2 is NULL or empty or
4673 * an empty node-set if @nodes1 doesn't contain @nodes2
4676 xmlXPathTrailingSorted (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4678 return(nodes1);
4679 return(xmlXPathNodeTrailingSorted(nodes1,
4685 * @nodes1: a node-set
4690 * @nodes1 and @nodes2 are sorted by document order, then
4693 * Returns the nodes in @nodes1 that follow the first node in @nodes2
4694 * in document order, @nodes1 if @nodes2 is NULL or empty or
4695 * an empty node-set if @nodes1 doesn't contain @nodes2
4698 xmlXPathTrailing (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
4700 return(nodes1);
4701 if (xmlXPathNodeSetIsEmpty(nodes1))
4703 xmlXPathNodeSetSort(nodes1);
4705 return(xmlXPathNodeTrailingSorted(nodes1,