Lines Matching defs:ns1
437 xmlNsPtr ns1 = cur->nsTab[i];
439 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
440 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
470 xmlNsPtr ns1 = cur->nsTab[i];
472 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
473 if(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)) {
474 return(xmlC14NIsVisible(ctx, ns1, cur->nodeTab[i]));
509 * @ns1: the pointer to first namespace
514 * Returns -1 if ns1 < ns2, 0 if ns1 == ns2 or 1 if ns1 > ns2.
519 const xmlNsPtr ns1 = (const xmlNsPtr) data1;
521 if (ns1 == ns2)
523 if (ns1 == NULL)
528 return (xmlStrcmp(ns1->prefix, ns2->prefix));