Searched refs:curns (Results 1 – 4 of 4) sorted by relevance
/PHP-7.2/ext/dom/ |
H A D | xpath.c | 144 xmlNsPtr curns; in dom_xpath_ext_function_php() local 148 curns = xmlNewNs(NULL, node->name, NULL); in dom_xpath_ext_function_php() 150 curns->prefix = xmlStrdup((xmlChar *) node->children); in dom_xpath_ext_function_php() 159 node->ns = curns; in dom_xpath_ext_function_php() 443 xmlNsPtr curns; in php_xpath_eval() local 447 curns = xmlNewNs(NULL, node->name, NULL); in php_xpath_eval() 449 curns->prefix = xmlStrdup((xmlChar *) node->children); in php_xpath_eval() 458 node->ns = curns; in php_xpath_eval()
|
H A D | node.c | 169 curns = nodep->nsDef; in dom_reconcile_ns() 170 while (curns) { in dom_reconcile_ns() 171 nsdftptr = curns->next; in dom_reconcile_ns() 174 (curns->prefix == NULL || xmlStrEqual(nsptr->prefix, curns->prefix))) { in dom_reconcile_ns() 175 curns->next = NULL; in dom_reconcile_ns() 182 curns = prevns; in dom_reconcile_ns() 185 prevns = curns; in dom_reconcile_ns() 186 curns = nsdftptr; in dom_reconcile_ns() 705 xmlNsPtr ns = NULL, curns; in dom_node_prefix_write() local 740 ns = curns; in dom_node_prefix_write() [all …]
|
H A D | element.c | 501 xmlNsPtr curns; in PHP_FUNCTION() local 505 curns = xmlNewNs(NULL, attrp->name, NULL); in PHP_FUNCTION() 507 curns->prefix = xmlStrdup((xmlChar *) attrp->children); in PHP_FUNCTION() 516 attrp->ns = curns; in PHP_FUNCTION() 944 xmlNsPtr curns; in PHP_FUNCTION() local 945 curns = xmlNewNs(NULL, nsptr->href, NULL); in PHP_FUNCTION() 947 curns->prefix = xmlStrdup((xmlChar *) nsptr->prefix); in PHP_FUNCTION() 956 fakeAttrp->ns = curns; in PHP_FUNCTION()
|
/PHP-7.2/ext/xsl/ |
H A D | xsltprocessor.c | 262 xmlNsPtr curns; in xsl_ext_function_php() local 266 curns = xmlNewNs(NULL, node->name, NULL); in xsl_ext_function_php() 268 curns->prefix = xmlStrdup((xmlChar *)node->children); in xsl_ext_function_php() 277 node->ns = curns; in xsl_ext_function_php()
|
Completed in 22 milliseconds