Home
last modified time | relevance | path

Searched refs:args (Results 301 – 325 of 560) sorted by relevance

1...<<11121314151617181920>>...23

/PHP-7.4/ext/standard/tests/strings/
H A Dvfprintf_variation3.phpt5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
12 * the '$format' and '$args' arguments of the function
H A Dvfprintf_variation5.phpt5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
12 * the '$format' and '$args' arguments of the function
H A Dvprintf_variation13.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvprintf_variation13_64bit.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation13.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation13_64bit.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvfprintf_variation17.phpt5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
12 * are passed to the '$format' and '$args' arguments of the function
H A Dvsprintf_variation7.phpt5 /* Prototype : string vsprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
/PHP-7.4/Zend/tests/
H A Dbug69989_3.phpt6 // Extra args
H A Dlsb_016.phpt23 public function __call($name, $args) {
H A Dmethod_argument_binding.phpt33 public function __call($name, $args) { }
H A Dbug46246.phpt12 public function call($method, $args = array())
/PHP-7.4/ext/standard/tests/array/
H A Drange_errors.phpt25 var_dump( range() ); // No.of args = 0
26 var_dump( range(1) ); // No.of args < expected
27 var_dump( range(1,2,3,4) ); // No.of args > expected
/PHP-7.4/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h107 WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg);
109 WORD flags, VARIANT *v, int nargs, zval *args, int allow_noarg);
111 WORD flags, VARIANT *v, int nargs, zval *args);
H A Dcom_com.c480 WORD flags, VARIANT *v, int nargs, zval *args) in php_com_do_invoke_byref() argument
523 php_com_variant_from_zval(&byref_vals[j], &args[nargs - i - 1], obj->code_page); in php_com_do_invoke_byref()
538 php_com_variant_from_zval(&vargs[i], &args[nargs - i - 1], obj->code_page); in php_com_do_invoke_byref()
545 php_com_variant_from_zval(&vargs[i], &args[nargs - i - 1], obj->code_page); in php_com_do_invoke_byref()
569 zval *arg = &args[nargs - i - 1]; in php_com_do_invoke_byref()
608 WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg) in php_com_do_invoke_by_id() argument
622 php_com_variant_from_zval(&vargs[i], &args[nargs - i - 1], obj->code_page); in php_com_do_invoke_by_id()
655 WORD flags, VARIANT *v, int nargs, zval *args, int allow_noarg) in php_com_do_invoke() argument
672 return php_com_do_invoke_by_id(obj, dispid, flags, v, nargs, args, 0, allow_noarg); in php_com_do_invoke()
/PHP-7.4/ext/soap/tests/
H A Dcustom_content_type.phpt18 $args = substr(PHP_OS, 0, 3) == 'WIN'
25 php_cli_server_start($code, null, $args);
/PHP-7.4/ext/standard/tests/directory/
H A DDirectoryClass_error_001.phpt20 echo "\n--> Try all methods with wrong number of args:\n";
50 --> Try all methods with wrong number of args:
H A DDirectoryClass_error_001-mb.phpt24 echo "\n--> Try all methods with wrong number of args:\n";
60 --> Try all methods with wrong number of args:
/PHP-7.4/ext/json/tests/
H A Djson_decode_exceptions.phpt37 ["args"]=>
/PHP-7.4/TSRM/
H A DTSRM.c78 #define TSRM_ERROR(args) tsrm_error args argument
96 #define TSRM_ERROR(args) argument
803 va_list args; in tsrm_error() local
807 va_start(args, format); in tsrm_error()
808 size = vfprintf(tsrm_error_file, format, args); in tsrm_error()
809 va_end(args); in tsrm_error()
/PHP-7.4/Zend/
H A Dzend_extensions.c232 …void zend_extension_message_dispatcher(const zend_extension *extension, int num_args, va_list args) in zend_extension_message_dispatcher() argument
240 message = va_arg(args, int); in zend_extension_message_dispatcher()
241 arg = va_arg(args, void *); in zend_extension_message_dispatcher()
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativeX86_64.c131 sljit_s32 args, i, tmp, size, saved_register_size; in sljit_emit_enter() local
175 args = get_arg_count(arg_types); in sljit_emit_enter()
177 if (args > 0) { in sljit_emit_enter()
178 size = args * 3; in sljit_emit_enter()
185 if (args > 0) { in sljit_emit_enter()
191 if (args > 1) { in sljit_emit_enter()
197 if (args > 2) { in sljit_emit_enter()
203 if (args > 0) { in sljit_emit_enter()
209 if (args > 1) { in sljit_emit_enter()
215 if (args > 2) { in sljit_emit_enter()
/PHP-7.4/ext/intl/tests/
H A Dmsgfmt_format_subpatterns.phpt38 $args = array(
52 foreach ($args as $arg) {
/PHP-7.4/ext/reflection/tests/
H A DReflectionMethod_invoke_basic.phpt56 echo "\nMethod with args:\n";
90 Method with args:
/PHP-7.4/ext/standard/tests/file/
H A Dreadfile_error.phpt13 var_dump( readfile() ); // args < expected
14 var_dump( readfile(__FILE__, true, $context, 4) ); // args > expected

Completed in 71 milliseconds

1...<<11121314151617181920>>...23