Home | History | Annotate | Download | only in libxml2

Lines Matching refs:ns1

429             xmlNsPtr ns1 = cur->nsTab[i];
431 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
432 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
462 xmlNsPtr ns1 = cur->nsTab[i];
464 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
465 if(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)) {
466 return(xmlC14NIsVisible(ctx, ns1, cur->nodeTab[i]));
503 * @ns1: the pointer to first namespace
508 * Returns -1 if ns1 < ns2, 0 if ns1 == ns2 or 1 if ns1 > ns2.
511 xmlC14NNsCompare(xmlNsPtr ns1, xmlNsPtr ns2)
513 if (ns1 == ns2)
515 if (ns1 == NULL)
520 return (xmlStrcmp(ns1->prefix, ns2->prefix));