Lines Matching refs:ctxt

94 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */  in xsl_ext_function_php()  argument
114 tctxt = xsltXPathGetTransformContext(ctxt); in xsl_ext_function_php()
136 obj = valuePop(ctxt); in xsl_ext_function_php()
155 obj = valuePop(ctxt); in xsl_ext_function_php()
230 obj = valuePop(ctxt); in xsl_ext_function_php()
234 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
253 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
257 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
263 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
278 valuePush(ctxt, xmlXPathNewNodeSet(nodep)); in xsl_ext_function_php()
280 valuePush(ctxt, xmlXPathNewBoolean(Z_TYPE(retval) == IS_TRUE)); in xsl_ext_function_php()
283 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
286 valuePush(ctxt, xmlXPathNewString((xmlChar *) Z_STRVAL(retval))); in xsl_ext_function_php()
302 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument
304 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
308 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument
310 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
403 xsltTransformContextPtr ctxt; in php_xsl_apply_stylesheet() local
459 ctxt = xsltNewTransformContext(style, doc); in php_xsl_apply_stylesheet()
460 ctxt->_private = (void *) intern; in php_xsl_apply_stylesheet()
466 ctxt->xinclude = Z_LVAL_P(doXInclude); in php_xsl_apply_stylesheet()
501 if (0 != xsltSetCtxtSecurityPrefs(secPrefs, ctxt)) { in php_xsl_apply_stylesheet()
509 newdocp = xsltApplyStylesheetUser(style, doc, (const char**) params, NULL, f, ctxt); in php_xsl_apply_stylesheet()
515 xsltFreeTransformContext(ctxt); in php_xsl_apply_stylesheet()