Searched refs:nargs (Results 1 – 6 of 6) sorted by relevance
/PHP-5.4/ext/com_dotnet/ |
H A D | com_com.c | 493 if (nargs) { in php_com_do_invoke_byref() 498 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref() 507 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref() 531 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref() 536 disp_params.cArgs = nargs; in php_com_do_invoke_byref() 552 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref() 555 SEPARATE_ZVAL_IF_NOT_REF(args[nargs - i - 1]); in php_com_do_invoke_byref() 594 if (nargs) { in php_com_do_invoke_by_id() 599 for (i = 0; i < nargs; i++) { in php_com_do_invoke_by_id() 603 disp_params.cArgs = nargs; in php_com_do_invoke_by_id() [all …]
|
H A D | php_com_dotnet_internal.h | 107 WORD flags, VARIANT *v, int nargs, zval **args, int silent, int allow_noarg TSRMLS_DC); 109 WORD flags, VARIANT *v, int nargs, zval **args, int allow_noarg TSRMLS_DC); 111 WORD flags, VARIANT *v, int nargs, zval ***args TSRMLS_DC);
|
H A D | com_handlers.c | 371 int nargs; in com_call_method() local 381 nargs = ZEND_NUM_ARGS(); in com_call_method() 383 if (nargs) { in com_call_method() 384 args = (zval ***)safe_emalloc(sizeof(zval *), nargs, 0); in com_call_method() 385 zend_get_parameters_array_ex(nargs, args); in com_call_method() 390 …e_byref(obj, (char*)method, -1, DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args TSRMLS_CC)) { in com_call_method()
|
/PHP-5.4/ext/dom/ |
H A D | xpath.c | 75 static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in dom_xpath_ext_function_php() argument 109 for (i = nargs - 1; i >= 0; i--) { in dom_xpath_ext_function_php() 116 fci.param_count = nargs - 1; in dom_xpath_ext_function_php() 122 for (i = nargs - 2; i >= 0; i--) { in dom_xpath_ext_function_php() 188 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php() 249 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php() 258 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument 260 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php() 264 static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_object_php() argument 266 dom_xpath_ext_function_php(ctxt, nargs, 2); in dom_xpath_ext_function_object_php()
|
/PHP-5.4/ext/xsl/ |
H A D | php_xsl.h | 76 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs); 77 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
|
H A D | xsltprocessor.c | 182 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in xsl_ext_function_php() argument 224 for (i = nargs - 1; i >= 0; i--) { in xsl_ext_function_php() 233 fci.param_count = nargs - 1; in xsl_ext_function_php() 239 for (i = nargs - 2; i >= 0; i--) { in xsl_ext_function_php() 314 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php() 376 for (i = 0; i < nargs - 1; i++) { in xsl_ext_function_php() 385 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_string_php() argument 387 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php() 391 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in xsl_ext_function_object_php() argument 393 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
|
Completed in 25 milliseconds