Home
last modified time | relevance | path

Searched refs:args (Results 201 – 225 of 566) sorted by relevance

12345678910>>...23

/PHP-5.4/Zend/tests/
H A Dmagic_by_ref_007.phpt7 function __call($name, &$args) { }
H A Dbug47801.phpt8 function __call($name, $args)
H A Dbug32429.phpt15 public function __call($name, $args) {
/PHP-5.4/ext/spl/tests/
H A DSplDoublyLinkedList_pop_noParams.phpt2 Checks that the pop() method of DoublyLinkedList does not accept args.
H A DsplDoublyLinkedList_shift_noParams.phpt2 Checks that the shift() method of DoublyLinkedList does not accept args.
/PHP-5.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-5.4/win32/build/
H A Dbuildconf.js183 args = WScript.Arguments;
185 for (i = 0; i < args.length; i++) {
186 arg = args(i);
/PHP-5.4/ext/standard/tests/general_functions/
H A D010.phpt9 function __call($name=null, $args=null) {
/PHP-5.4/Zend/
H A Dzend_exceptions.c397 static int _build_trace_args(zval **arg TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_… in _build_trace_args() argument
402 str = va_arg(args, char**); in _build_trace_args()
403 len = va_arg(args, int*); in _build_trace_args()
543 static int _build_trace_string(zval **frame TSRMLS_DC, int num_args, va_list args, zend_hash_key *h… in _build_trace_string() argument
556 str = va_arg(args, char**); in _build_trace_string()
557 len = va_arg(args, int*); in _build_trace_string()
558 num = va_arg(args, int*); in _build_trace_string()
876 va_list args; in zend_error_va() local
878 va_start(args, format); in zend_error_va()
879 zend_error_cb(type, file, lineno, format, args); in zend_error_va()
[all …]
H A Dzend_llist.c244 va_list args; in zend_llist_apply_with_arguments() local
246 va_start(args, num_args); in zend_llist_apply_with_arguments()
248 func(element->data, num_args, args TSRMLS_CC); in zend_llist_apply_with_arguments()
250 va_end(args); in zend_llist_apply_with_arguments()
/PHP-5.4/ext/standard/tests/strings/
H A Dvprintf_variation11_64bit.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvprintf_variation5.phpt5 /* Prototype : string vprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation11.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation11_64bit.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation5.phpt5 /* Prototype : string vsprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
H A Dvprintf_variation11.phpt9 /* Prototype : string vprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
H A Dvsprintf_variation17.phpt5 /* Prototype : string vsprintf(string format, array args)
12 * are passed to the '$format' and '$args' arguments of the function
H A Dstrtr_variation1.phpt49 //strtr() call in three args syntax form
52 //strtr() call in two args syntax form
H A Dstrtr_variation2.phpt53 //strtr() call in three args syntax form
56 //strtr() call in two args syntax form
H A Dvfprintf_variation15.phpt9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
16 * are passed to the '$format' and '$args' arguments of the function
H A Dvfprintf_variation15_64bit.phpt9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
16 * are passed to the '$format' and '$args' arguments of the function
/PHP-5.4/ext/mysqli/
H A Dmysqli_api.c146 Z_ADDREF_P(*args[i+start]); in mysqli_stmt_bind_param_do_bind()
200 params[i].zv = *(args[i + start]); in mysqli_stmt_bind_param_do_bind()
215 zval ***args; in PHP_FUNCTION() local
271 efree(args); in PHP_FUNCTION()
312 convert_to_double_ex(args[i]); in mysqli_stmt_bind_result_do_bind()
341 convert_to_long_ex(args[i]); in mysqli_stmt_bind_result_do_bind()
446 Z_ADDREF_PP(args[i]); in mysqli_stmt_bind_result_do_bind()
447 stmt->result.vars[ofs] = *args[i]; in mysqli_stmt_bind_result_do_bind()
475 zval ***args; in PHP_FUNCTION() local
504 efree(args); in PHP_FUNCTION()
[all …]
/PHP-5.4/ext/libxml/
H A Dlibxml.c700 va_list args; in php_libxml_ctx_error() local
701 va_start(args, msg); in php_libxml_ctx_error()
702 php_libxml_internal_error_handler(PHP_LIBXML_CTX_ERROR, ctx, &msg, args); in php_libxml_ctx_error()
703 va_end(args); in php_libxml_ctx_error()
708 va_list args; in php_libxml_ctx_warning() local
709 va_start(args, msg); in php_libxml_ctx_warning()
711 va_end(args); in php_libxml_ctx_warning()
723 va_list args; in php_libxml_error_handler() local
724 va_start(args, msg); in php_libxml_error_handler()
725 php_libxml_internal_error_handler(PHP_LIBXML_ERROR, ctx, &msg, args); in php_libxml_error_handler()
[all …]
/PHP-5.4/ext/standard/
H A Duser_filters.c178 zval **args[4]; in userfilter_filter() local
203 args[0] = &zin; in userfilter_filter()
207 args[1] = &zout; in userfilter_filter()
215 args[2] = &zconsumed; in userfilter_filter()
219 args[3] = &zclosing; in userfilter_filter()
225 4, args, in userfilter_filter()
/PHP-5.4/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h107 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);

Completed in 72 milliseconds

12345678910>>...23