Lines Matching refs:href
300 return (xmlNodePtr)xmlHasNsProp(elem, nqname, ns->href); in dom_get_dom1_attribute()
345 value = xmlStrdup(((xmlNsPtr)attr)->href); in PHP_FUNCTION()
681 RETVAL_STRING((char *) nsptr->href); in PHP_FUNCTION()
727 def = xmlNewNs(tree, ns->href, prefix); in _dom_new_reconNs()
791 if ((tmpnsptr->prefix != NULL) && (tmpnsptr->href != NULL) && in PHP_FUNCTION()
792 (xmlStrEqual(tmpnsptr->href, (xmlChar *) uri))) { in PHP_FUNCTION()
822 if (nsptr->href) { in PHP_FUNCTION()
823 xmlFree((xmlChar *) nsptr->href); in PHP_FUNCTION()
825 nsptr->href = xmlStrdup((xmlChar *)value); in PHP_FUNCTION()
889 if (xmlStrEqual((xmlChar *)uri, nsptr->href)) { in PHP_FUNCTION()
890 if (nsptr->href != NULL) { in PHP_FUNCTION()
891 xmlFree((char *) nsptr->href); in PHP_FUNCTION()
892 nsptr->href = NULL; in PHP_FUNCTION()
945 curns = xmlNewNs(NULL, nsptr->href, NULL); in PHP_FUNCTION()
950 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *) nsptr->prefix, nsptr->href); in PHP_FUNCTION()
952 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *)"xmlns", nsptr->href); in PHP_FUNCTION()
1010 existattrp = xmlHasNsProp(nodep, nsp->href, attrp->name); in PHP_FUNCTION()