Home | History | Annotate | Download | only in libxml2

Lines Matching refs:ns1

434             xmlNsPtr ns1 = cur->nsTab[i];
436 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
437 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
467 xmlNsPtr ns1 = cur->nsTab[i];
469 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
470 if(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)) {
471 return(xmlC14NIsVisible(ctx, ns1, cur->nodeTab[i]));
506 * @ns1: the pointer to first namespace
511 * Returns -1 if ns1 < ns2, 0 if ns1 == ns2 or 1 if ns1 > ns2.
514 xmlC14NNsCompare(xmlNsPtr ns1, xmlNsPtr ns2)
516 if (ns1 == ns2)
518 if (ns1 == NULL)
523 return (xmlStrcmp(ns1->prefix, ns2->prefix));