Searched refs:nargs (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/com_dotnet/ |
| H A D | com_com.c | 465 WORD flags, VARIANT *v, int nargs, zval ***args TSRMLS_DC) 493 if (nargs) { 494 vargs = (VARIANT*)safe_emalloc(sizeof(VARIANT), nargs, 0); 498 for (i = 0; i < nargs; i++) { 499 if (f->arg_info[nargs - i - 1].pass_by_reference) { 507 for (j = 0, i = 0; i < nargs; i++) { 508 if (f->arg_info[nargs - i - 1].pass_by_reference) { 510 php_com_variant_from_zval(&byref_vals[j], *args[nargs - i - 1], obj->code_page TSRMLS_CC); 525 php_com_variant_from_zval(&vargs[i], *args[nargs - i - 1], obj->code_page TSRMLS_CC); 531 for (i = 0; i < nargs; 464 php_com_do_invoke_byref(php_com_dotnet_object *obj, char *name, int namelen, WORD flags, VARIANT *v, int nargs, zval ***args TSRMLS_DC) argument 585 php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid, WORD flags, VARIANT *v, int nargs, zval **args, int silent, int allow_noarg TSRMLS_DC) argument 632 php_com_do_invoke(php_com_dotnet_object *obj, char *name, int namelen, WORD flags, VARIANT *v, int nargs, zval **args, int allow_noarg TSRMLS_DC) argument [all...] |
| H A D | com_handlers.c | 371 int nargs; local 381 nargs = ZEND_NUM_ARGS(); 383 if (nargs) { 384 args = (zval ***)safe_emalloc(sizeof(zval *), nargs, 0); 385 zend_get_parameters_array_ex(nargs, args); 390 if (SUCCESS == php_com_do_invoke_byref(obj, method, -1, DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, nargs, args TSRMLS_CC)) {
|
| H A D | php_com_dotnet_internal.h | 110 WORD flags, VARIANT *v, int nargs, zval **args, int silent, int allow_noarg TSRMLS_DC); 112 WORD flags, VARIANT *v, int nargs, zval **args, int allow_noarg TSRMLS_DC); 114 WORD flags, VARIANT *v, int nargs, zval ***args TSRMLS_DC);
|
| /PHP_5_3/ext/dom/ |
| H A D | xpath.c | 75 static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ argument 109 for (i = nargs - 1; i >= 0; i--) { 116 fci.param_count = nargs - 1; 122 for (i = nargs - 2; i >= 0; i--) { 188 for (i = 0; i < nargs - 1; i++) { 249 for (i = 0; i < nargs - 1; i++) { 258 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ argument 260 dom_xpath_ext_function_php(ctxt, nargs, 1); 264 static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ argument 266 dom_xpath_ext_function_php(ctxt, nargs, [all...] |
| /PHP_5_3/ext/xsl/ |
| H A D | php_xsl.h | 74 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs); 75 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
|
| H A D | xsltprocessor.c | 173 static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ argument 215 for (i = nargs - 1; i >= 0; i--) { 222 fci.param_count = nargs - 1; 228 for (i = nargs - 2; i >= 0; i--) { 297 for (i = 0; i < nargs - 1; i++) { 358 for (i = 0; i < nargs - 1; i++) { 367 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ argument 369 xsl_ext_function_php(ctxt, nargs, 1); 373 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ argument 375 xsl_ext_function_php(ctxt, nargs, [all...] |
Completed in 7 milliseconds