Home
last modified time | relevance | path

Searched refs:args (Results 176 – 200 of 615) sorted by relevance

12345678910>>...25

/PHP-5.6/ext/intl/calendar/
H A Dcalendar_methods.cpp405 ***args = &args_a[0]; in PHP_FUNCTION() local
418 args++; in PHP_FUNCTION()
421 while (variant > 2 && Z_TYPE_PP(args[variant - 1]) == IS_NULL) { in PHP_FUNCTION()
435 if (Z_LVAL_PP(args[i]) < INT32_MIN || Z_LVAL_PP(args[i]) > INT32_MAX) { in PHP_FUNCTION()
469 ***args = &args_a[0]; in PHP_FUNCTION() local
480 args++; in PHP_FUNCTION()
482 if (args[1] != NULL && Z_TYPE_PP(args[1]) == IS_BOOL) { in PHP_FUNCTION()
490 bool_variant_val = Z_BVAL_PP(args[1]); in PHP_FUNCTION()
527 ***args = &args_a[0]; in PHP_FUNCTION() local
539 args++; in PHP_FUNCTION()
[all …]
/PHP-5.6/ext/reflection/tests/
H A DReflectionClass_newInstance_001.phpt16 echo "In constructor of class B with args $a, $b\n";
88 In constructor of class B with args ,
89 In constructor of class B with args x, 123
H A DReflectionProperty_export_error.phpt35 echo "\n\nIncorrect number of args:\n";
50 Incorrect number of args:
H A DReflectionMethod_invokeArgs_basic.phpt38 echo "\nMethod with args:\n";
66 Method with args:
H A DReflectionClass_newInstanceArgs_001.phpt16 echo "In constructor of class B with args $a, $b\n";
88 In constructor of class B with args ,
89 In constructor of class B with args x, 123
/PHP-5.6/tests/lang/
H A Dfunc_get_args.002.phpt2 func_get_args with variable number of args
H A Dfunc_get_arg.002.phpt2 func_get_arg with variable number of args
/PHP-5.6/ext/standard/tests/file/
H A Dfileowner_error.phpt19 var_dump( fileowner() ); // args < expected
20 var_dump( fileowner("/no/such/file", "root") ); // args > expected
H A Dis_writable_error.phpt12 var_dump( is_writable() ); // args < expected
16 var_dump( is_writable(1, 2) ); // args > expected
H A Dis_file_error.phpt12 var_dump( is_file() ); // Zero No. of args
14 /* no of args > expected */
/PHP-5.6/ext/openssl/tests/
H A Dopenssl_csr_export_bacis.phpt19 $args = array(
28 $csr = openssl_csr_new($dn, $privkey, $args);
/PHP-5.6/Zend/tests/arg_unpack/
H A Dby_ref.phpt8 function test1(&...$args) {
9 foreach ($args as &$arg) {
/PHP-5.6/ext/spl/tests/
H A DarrayObject_count_basic1.phpt29 //Extra args are ignored.
57 //Extra args are ignored.
/PHP-5.6/Zend/tests/
H A Dbug38220.phpt25 function __call($method, $args) {
32 call_user_func_array(array($drv, $method), $args);
H A Dbug47880.phpt8 $backtrace[1]['args'][1] = 'bomb';
/PHP-5.6/ext/standard/tests/strings/
H A Dvfprintf_variation20.phpt5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
18 $args = array(1, 2);
96 vfprintf($fp, $value, $args);
H A Dvprintf_variation1.phpt5 /* Prototype : string vprintf(string $format, array $args)
18 $args = array(1, 2);
91 $result = vprintf($value,$args);
H A Dvsprintf_variation1.phpt5 /* Prototype : string vsprintf(string $format, array $args)
18 $args = array(1, 2);
91 var_dump( vsprintf($value,$args) );
H A Dvsprintf_variation19.phpt9 /* Prototype : string vsprintf(string $format , array $args)
31 // initializing the args array
/PHP-5.6/Zend/
H A Dzend_extensions.c205 …extension_message_dispatcher(const zend_extension *extension, int num_args, va_list args TSRMLS_DC) in zend_extension_message_dispatcher()
213 message = va_arg(args, int); in zend_extension_message_dispatcher()
214 arg = va_arg(args, void *); in zend_extension_message_dispatcher()
H A Dzend.c1033 va_list args; in zend_error() local
1119 va_start(args, format); in zend_error()
1123 va_end(args); in zend_error()
1127 va_start(args, format); in zend_error()
1163 va_copy(usr_copy, args); in zend_error()
1264 va_end(args); in zend_error()
1286 va_list args; in zend_output_debug_string() local
1288 va_start(args, format); in zend_output_debug_string()
1293 vsnprintf(output_buf, 1024, format, args); in zend_output_debug_string()
1301 vfprintf(stderr, format, args); in zend_output_debug_string()
[all …]
/PHP-5.6/Zend/tests/variadic/
H A Dby_ref_error.phpt6 function test(&... $args) { }
H A Dno_default_error.phpt6 function test(...$args = 123) {}
/PHP-5.6/ext/standard/
H A Dscanf.h45 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval ***args,
/PHP-5.6/ext/standard/tests/array/
H A D001.phpt16 function make_nested_array ($depth, $breadth, $function = NULL, $args = array ()) {
21 $array = array (call_user_func_array ($function, $args));

Completed in 42 milliseconds

12345678910>>...25