Home
last modified time | relevance | path

Searched refs:args (Results 151 – 175 of 587) sorted by relevance

12345678910>>...24

/PHP-5.5/tests/lang/
H A Dfunc_num_args.001.phpt2 func_num_args with no args
H A Dfunc_num_args.002.phpt2 func_num_args with variable number of args
H A Dfunc_get_args.002.phpt2 func_get_args with variable number of args
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c185 zval **args; in xsl_ext_function_php() local
241 MAKE_STD_ZVAL(args[i]); in xsl_ext_function_php()
247 ZVAL_BOOL(args[i], obj->boolval); in xsl_ext_function_php()
255 ZVAL_STRING(args[i], str, 1); in xsl_ext_function_php()
260 array_init(args[i]); in xsl_ext_function_php()
296 ZVAL_STRING(args[i], str, 1); in xsl_ext_function_php()
300 fci.params[i] = &args[i]; in xsl_ext_function_php()
315 zval_ptr_dtor(&args[i]); in xsl_ext_function_php()
317 efree(args); in xsl_ext_function_php()
377 zval_ptr_dtor(&args[i]); in xsl_ext_function_php()
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dfilegroup_error.phpt19 var_dump( filegroup() ); // args < expected
20 var_dump( filegroup("/no/such/file", "root") ); // args > expected
H A Dfiletype_error.phpt19 /* No.of args less than expected */
22 /* No.of args greater than expected */
H A Dfpassthru_error.phpt17 /* No.of args less than expected */
20 /* No.of args greaer than expected */
H A Dfputcsv_error.phpt16 // more than expected no. of args
35 /* loop to test fputcsv() with different invalid type of args */
38 var_dump( fputcsv($invalid_args[$loop_counter - 1]) ); // with default args
39 …var_dump( fputcsv($invalid_args[$loop_counter - 1], $fields, $delim, $enclosure) ); // all args sp…
H A Dfgetcsv_error.phpt15 // more than expected no. of args
35 /* loop to test fgetcsv() with different invalid type of args */
38 var_dump( fgetcsv($invalid_args[$loop_counter - 1]) ); // with default args
39 …etcsv($invalid_args[$loop_counter - 1], $len, $delim, $enclosure, $escape) ); // all args specified
H A Dis_writable_error.phpt12 var_dump( is_writable() ); // args < expected
16 var_dump( is_writable(1, 2) ); // args > expected
H A Dfileowner_error.phpt19 var_dump( fileowner() ); // args < expected
20 var_dump( fileowner("/no/such/file", "root") ); // args > expected
H A Dis_file_error.phpt12 var_dump( is_file() ); // Zero No. of args
14 /* no of args > expected */
/PHP-5.5/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.5/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.5/Zend/
H A Dzend_extensions.c197 …extension_message_dispatcher(const zend_extension *extension, int num_args, va_list args TSRMLS_DC) in zend_extension_message_dispatcher()
205 message = va_arg(args, int); in zend_extension_message_dispatcher()
206 arg = va_arg(args, void *); in zend_extension_message_dispatcher()
H A Dzend.c1019 va_list args; in zend_error() local
1105 va_start(args, format); in zend_error()
1109 va_end(args); in zend_error()
1113 va_start(args, format); in zend_error()
1149 va_copy(usr_copy, args); in zend_error()
1250 va_end(args); in zend_error()
1272 va_list args; in zend_output_debug_string() local
1274 va_start(args, format); in zend_output_debug_string()
1279 vsnprintf(output_buf, 1024, format, args); in zend_output_debug_string()
1287 vfprintf(stderr, format, args); in zend_output_debug_string()
[all …]
/PHP-5.5/ext/openssl/tests/
H A D022.phpt19 $args = array(
28 $csr = openssl_csr_new($dn, $privkey, $args);
/PHP-5.5/Zend/tests/
H A Dbug38220.phpt25 function __call($method, $args) {
32 call_user_func_array(array($drv, $method), $args);
/PHP-5.5/ext/spl/tests/
H A DarrayObject_count_basic1.phpt29 //Extra args are ignored.
57 //Extra args are ignored.
/PHP-5.5/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) );

Completed in 37 milliseconds

12345678910>>...24