Lines Matching refs:ctxt

177 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */  in xsl_ext_function_php()  argument
197 tctxt = xsltXPathGetTransformContext(ctxt); in xsl_ext_function_php()
219 obj = valuePop(ctxt); in xsl_ext_function_php()
233 obj = valuePop(ctxt); in xsl_ext_function_php()
307 obj = valuePop(ctxt); in xsl_ext_function_php()
311 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
330 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
334 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
340 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
355 valuePush(ctxt, xmlXPathNewNodeSet(nodep)); in xsl_ext_function_php()
357 valuePush(ctxt, xmlXPathNewBoolean(Z_TYPE(retval) == IS_TRUE)); in xsl_ext_function_php()
360 valuePush(ctxt, xmlXPathNewString((const xmlChar *) "")); in xsl_ext_function_php()
363 valuePush(ctxt, xmlXPathNewString((xmlChar *) Z_STRVAL(retval))); in xsl_ext_function_php()
379 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument
381 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
385 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument
387 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
481 xsltTransformContextPtr ctxt; in php_xsl_apply_stylesheet() local
532 ctxt = xsltNewTransformContext(style, doc); in php_xsl_apply_stylesheet()
533 ctxt->_private = (void *) intern; in php_xsl_apply_stylesheet()
539 ctxt->xinclude = Z_LVAL_P(doXInclude); in php_xsl_apply_stylesheet()
574 if (0 != xsltSetCtxtSecurityPrefs(secPrefs, ctxt)) { in php_xsl_apply_stylesheet()
582 newdocp = xsltApplyStylesheetUser(style, doc, (const char**) params, NULL, f, ctxt); in php_xsl_apply_stylesheet()
588 xsltFreeTransformContext(ctxt); in php_xsl_apply_stylesheet()