Home
last modified time | relevance | path

Searched refs:ns1 (Results 1 – 2 of 2) sorted by relevance

/external/libxml2/
Dc14n.c429 xmlNsPtr ns1 = cur->nsTab[i]; in xmlC14NVisibleNsStackFind() local
431 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) { in xmlC14NVisibleNsStackFind()
432 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)); in xmlC14NVisibleNsStackFind()
462 xmlNsPtr ns1 = cur->nsTab[i]; in xmlExcC14NVisibleNsStackFind() local
464 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) { in xmlExcC14NVisibleNsStackFind()
465 if(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)) { in xmlExcC14NVisibleNsStackFind()
466 return(xmlC14NIsVisible(ctx, ns1, cur->nodeTab[i])); in xmlExcC14NVisibleNsStackFind()
511 xmlC14NNsCompare(xmlNsPtr ns1, xmlNsPtr ns2) in xmlC14NNsCompare() argument
513 if (ns1 == ns2) in xmlC14NNsCompare()
515 if (ns1 == NULL) in xmlC14NNsCompare()
[all …]
Dxpath.c3459 xmlNsPtr ns1, ns2; in xmlXPathNodeSetContains() local
3461 ns1 = (xmlNsPtr) val; in xmlXPathNodeSetContains()
3463 if (ns1 == ns2) in xmlXPathNodeSetContains()
3465 if ((ns1->next != NULL) && (ns2->next == ns1->next) && in xmlXPathNodeSetContains()
3466 (xmlStrEqual(ns1->prefix, ns2->prefix))) in xmlXPathNodeSetContains()
6457 xmlNodeSetPtr ns1; in xmlXPathCompareNodeSets() local
6472 ns1 = arg1->nodesetval; in xmlXPathCompareNodeSets()
6475 if ((ns1 == NULL) || (ns1->nodeNr <= 0)) { in xmlXPathCompareNodeSets()
6493 for (i = 0;i < ns1->nodeNr;i++) { in xmlXPathCompareNodeSets()
6494 val1 = xmlXPathCastNodeToNumber(ns1->nodeTab[i]); in xmlXPathCompareNodeSets()
[all …]