Lines Matching refs:newdocp
480 xmlDocPtr newdocp = NULL; in php_xsl_apply_stylesheet() local
587 newdocp = xsltApplyStylesheetUser(style, doc, (const char**) params, NULL, f, ctxt); in php_xsl_apply_stylesheet()
616 return newdocp; in php_xsl_apply_stylesheet()
628 xmlDoc *newdocp; in PHP_FUNCTION() local
641 newdocp = php_xsl_apply_stylesheet(id, intern, sheetp, docp); in PHP_FUNCTION()
643 if (newdocp) { in PHP_FUNCTION()
657 xmlFreeDoc(newdocp); in PHP_FUNCTION()
666 php_libxml_increment_doc_ref(interndoc, newdocp); in PHP_FUNCTION()
667 php_libxml_increment_node_ptr(interndoc, (xmlNodePtr)newdocp, (void *)interndoc); in PHP_FUNCTION()
669 php_dom_create_object((xmlNodePtr) newdocp, return_value, NULL); in PHP_FUNCTION()
683 xmlDoc *newdocp; in PHP_FUNCTION() local
698 newdocp = php_xsl_apply_stylesheet(id, intern, sheetp, docp); in PHP_FUNCTION()
701 if (newdocp) { in PHP_FUNCTION()
702 ret = xsltSaveResultToFilename(uri, newdocp, sheetp, 0); in PHP_FUNCTION()
703 xmlFreeDoc(newdocp); in PHP_FUNCTION()
715 xmlDoc *newdocp; in PHP_FUNCTION() local
730 newdocp = php_xsl_apply_stylesheet(id, intern, sheetp, docp); in PHP_FUNCTION()
733 if (newdocp) { in PHP_FUNCTION()
734 ret = xsltSaveResultToString(&doc_txt_ptr, &doc_txt_len, newdocp, sheetp); in PHP_FUNCTION()
739 xmlFreeDoc(newdocp); in PHP_FUNCTION()