/PHP-5.4/ext/intl/msgformat/ |
H A D | msgformat_helpers.cpp | 72 convert_to_long_ex(&args[i]); in umsg_format_helper() 77 convert_to_double_ex(&args[i]); in umsg_format_helper() 82 convert_to_long_ex(&args[i]); in umsg_format_helper() 87 if(Z_TYPE_P(args[i]) == IS_DOUBLE) { in umsg_format_helper() 88 tInt64 = (int64_t)Z_DVAL_P(args[i]); in umsg_format_helper() 90 tInt64 = (int64_t)Z_LVAL_P(args[i]); in umsg_format_helper() 92 SEPARATE_ZVAL_IF_NOT_REF(&args[i]); in umsg_format_helper() 94 tInt64 = (Z_TYPE_P(args[i]) == IS_DOUBLE)?(int64_t)Z_DVAL_P(args[i]):Z_LVAL_P(args[i]); in umsg_format_helper() 101 …intl_convert_utf8_to_utf16(&stringVal, &stringLen, Z_STRVAL_P(args[i]), Z_STRLEN_P(args[i]), statu… in umsg_format_helper() 156 ALLOC_INIT_ZVAL((*args)[i]); in umsg_parse_helper() [all …]
|
H A D | msgformat_format.c | 35 static void msgfmt_do_format(MessageFormatter_object *mfo, zval *args, zval *return_value TSRMLS_DC… in msgfmt_do_format() argument 44 count = zend_hash_num_elements(Z_ARRVAL_P(args)); in msgfmt_do_format() 56 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(args), &pos); in msgfmt_do_format() 59 zend_hash_get_current_data_ex(Z_ARRVAL_P(args), (void **)&val, &pos); in msgfmt_do_format() 63 zend_hash_move_forward_ex(Z_ARRVAL_P(args), &pos); in msgfmt_do_format() 90 zval *args; in PHP_FUNCTION() local 96 &object, MessageFormatter_ce_ptr, &args ) == FAILURE ) in PHP_FUNCTION() 107 msgfmt_do_format(mfo, args, return_value TSRMLS_CC); in PHP_FUNCTION() 118 zval *args; in PHP_FUNCTION() local 130 &slocale, &slocale_len, &pattern, &pattern_len, &args ) == FAILURE ) in PHP_FUNCTION() [all …]
|
/PHP-5.4/ext/bcmath/libbcmath/src/ |
H A D | rt.c | 44 va_list args; in bc_rt_warn() local 47 va_start (args, mesg); in bc_rt_warn() 48 vsnprintf (error_mesg, sizeof(error_mesg), mesg, args); in bc_rt_warn() 49 va_end (args); in bc_rt_warn() 57 va_list args; in bc_rt_error() local 60 va_start (args, mesg); in bc_rt_error() 61 vsnprintf (error_mesg, sizeof(error_mesg), mesg, args); in bc_rt_error() 62 va_end (args); in bc_rt_error()
|
/PHP-5.4/ext/session/ |
H A D | mod_user.c | 81 zval *args[2]; in PS_OPEN_FUNC() local 91 SESS_ZVAL_STRING((char*)save_path, args[0]); in PS_OPEN_FUNC() 92 SESS_ZVAL_STRING((char*)session_name, args[1]); in PS_OPEN_FUNC() 130 zval *args[1]; in PS_READ_FUNC() local 133 SESS_ZVAL_STRING((char*)key, args[0]); in PS_READ_FUNC() 151 zval *args[2]; in PS_WRITE_FUNC() local 154 SESS_ZVAL_STRING((char*)key, args[0]); in PS_WRITE_FUNC() 164 zval *args[1]; in PS_DESTROY_FUNC() local 167 SESS_ZVAL_STRING((char*)key, args[0]); in PS_DESTROY_FUNC() 176 zval *args[1]; in PS_GC_FUNC() local [all …]
|
/PHP-5.4/ext/standard/tests/general_functions/ |
H A D | bug40398.phpt | 18 $args = func_get_args(); 19 call_user_func_array(array($this, 'Base::__construct'), $args); 27 $args = func_get_args(); 36 $args = func_get_args(); 37 call_user_func_array('Base::__construct', $args); 45 $args = func_get_args(); 46 call_user_func_array('parent::__construct', $args); 54 $args = func_get_args(); 55 call_user_func_array(array('Base', '__construct'), $args); 63 $args = func_get_args(); [all …]
|
/PHP-5.4/ext/interbase/ |
H A D | ibase_events.c | 127 zval ***args; in PHP_FUNCTION() local 147 efree(args); in PHP_FUNCTION() 153 efree(args); in PHP_FUNCTION() 157 efree(args); in PHP_FUNCTION() 174 efree(args); in PHP_FUNCTION() 184 efree(args); in PHP_FUNCTION() 192 efree(args); in PHP_FUNCTION() 292 efree(args); in PHP_FUNCTION() 329 efree(args); in PHP_FUNCTION() 363 efree(args); in PHP_FUNCTION() [all …]
|
H A D | php_ibase_udf.c | 205 INIT_ZVAL(args[i]); in call_php() 206 argp[i] = &args[i]; in call_php() 357 PARAMDSC *args[1] = { arg1 }; in udf_call_php1() local 358 call_php(name, r, 1, args); in udf_call_php1() 364 call_php(name, r, 2, args); in udf_call_php2() 370 call_php(name, r, 3, args); in udf_call_php3() 377 call_php(name, r, 4, args); in udf_call_php4() 384 call_php(name, r, 5, args); in udf_call_php5() 391 call_php(name, r, 6, args); in udf_call_php6() 398 call_php(name, r, 7, args); in udf_call_php7() [all …]
|
/PHP-5.4/Zend/tests/ |
H A D | debug_backtrace_limit.phpt | 30 [args] => Array 44 [args] => Array 55 [args] => Array 69 [args] => Array 80 [args] => Array 91 [args] => Array 105 [args] => Array 116 [args] => Array 127 [args] => Array
|
H A D | bug28377.phpt | 2 Bug #28377 (debug_backtrace is intermittently passing args) 14 echo $traceName ." -- args: "; 15 echo isset($btInfo[0]['args']) ? count($btInfo[0]['args']) : 'does not exist'; 22 dereferenced -- args: 2 23 direct -- args: 2
|
H A D | lsb_022.phpt | 9 static function __callstatic($name, $args) { 17 static function __callstatic($name, $args) { 18 parent::__callstatic($name, $args); 19 call_user_func_array("parent::__callstatic", array($name, $args)); 21 call_user_func_array("parent::foo", $args); 22 call_user_func_array(array("parent","foo"), $args);
|
H A D | bug50383.phpt | 7 public static function __callStatic($method, $args) { 10 public function __call($method, $args) { 49 [args] => Array 67 [args] => Array 78 [args] => Array 95 [args] => Array 113 [args] => Array 124 [args] => Array
|
H A D | bug50394.phpt | 8 function __call( $name, $args ) { 10 call_user_func_array( 'inc', $args ); 15 $args = array( &$arg ); 17 call_user_func_array( array( $proxy, 'bar' ), $args );
|
H A D | debug_backtrace_options.phpt | 79 [args] => Array 90 [args] => Array 110 [args] => Array 125 [args] => Array 142 [args] => Array 154 [args] => Array 174 [args] => Array 189 [args] => Array 206 [args] => Array 218 [args] => Array [all …]
|
/PHP-5.4/ext/intl/doc/ |
H A D | msgfmt_api.php | 33 * @param array $args arguments to insert into the pattern string 36 public function format($args) {} argument 56 * @param array $args the array of values to insert into $pattern 59 public static function formatMessage($locale, $pattern, $args) {} argument 126 * @param array $args arguments to insert into the pattern string 129 function msgfmt_format($fmt, $args) {} argument 150 * @param array $args the array of values to insert into $pattern 153 function msgfmt_format_message($locale, $pattern, $args) {} argument
|
/PHP-5.4/ext/spl/tests/ |
H A D | arrayObject_getIteratorClass_basic1.phpt | 8 $args = func_get_args(); 9 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; 13 $args = func_get_args(); 14 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; 19 $args = func_get_args(); 20 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; 25 $args = func_get_args(); 26 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; 31 $args = func_get_args(); 32 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; [all …]
|
/PHP-5.4/Zend/ |
H A D | zend_sprintf.c | 33 va_list args; in zend_sprintf() local 35 va_start(args, format); in zend_sprintf() 36 vsprintf(buffer, format, args); in zend_sprintf() 37 va_end(args); in zend_sprintf()
|
/PHP-5.4/main/ |
H A D | php_sprintf.c | 33 va_list args; in php_sprintf() local 36 va_start (args, format); in php_sprintf() 38 ret = vsprintf (s, format, args); in php_sprintf() 39 va_end (args); in php_sprintf()
|
/PHP-5.4/ext/standard/tests/file/ |
H A D | bug22414.phpt | 10 $args = ' -n '; 13 passthru($php . $args . ' -r " echo \"HELLO\"; "'); 20 $cmd = $php . $args . ' -r \"readfile(@getenv(\'TEST_PHP_EXECUTABLE\')); \"'; 21 $cmd = $php . $args . ' -r \' passthru("'.$cmd.'"); \' > '.$tmpfile ; 23 $cmd = $php . $args . ' -r \"readfile(@getenv(\\\\\\"TEST_PHP_EXECUTABLE\\\\\\")); \"'; 24 $cmd = $php . $args . ' -r " passthru(\''.$cmd.'\');" > '.$tmpfile ;
|
/PHP-5.4/ext/filter/ |
H A D | callback_filter.c | 26 zval ***args; in php_filter_callback() local 36 args = safe_emalloc(sizeof(zval **), 1, 0); in php_filter_callback() 37 args[0] = &value; in php_filter_callback() 39 …status = call_user_function_ex(EG(function_table), NULL, option_array, &retval_ptr, 1, args, 0, NU… in php_filter_callback() 53 efree(args); in php_filter_callback()
|
/PHP-5.4/ext/mysqli/ |
H A D | mysqli_embedded.c | 36 zval *args; in PHP_FUNCTION() local 45 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "laa", &start, &args, &grps) == FAILURE) { in PHP_FUNCTION() 54 if ((argc = zend_hash_num_elements(HASH_OF(args)))) { in PHP_FUNCTION() 58 zend_hash_internal_pointer_reset_ex(HASH_OF(args), &pos); in PHP_FUNCTION() 60 for (index = 0;; zend_hash_move_forward_ex(HASH_OF(args), &pos)) { in PHP_FUNCTION() 63 if (zend_hash_get_current_data_ex(HASH_OF(args), (void **) &item, &pos) == FAILURE) { in PHP_FUNCTION()
|
/PHP-5.4/ext/mbstring/tests/ |
H A D | mb_ereg1.phpt | 16 foreach ($a as $args) { 17 var_dump(mb_ereg($args[0], $args[1], $args[2])); 18 var_dump($args);
|
/PHP-5.4/ext/standard/ |
H A D | assert.c | 209 MAKE_STD_ZVAL(args[0]); in PHP_FUNCTION() 210 MAKE_STD_ZVAL(args[1]); in PHP_FUNCTION() 211 MAKE_STD_ZVAL(args[2]); in PHP_FUNCTION() 213 ZVAL_STRING(args[0], SAFE_STRING(filename), 1); in PHP_FUNCTION() 214 ZVAL_LONG (args[1], lineno); in PHP_FUNCTION() 215 ZVAL_STRING(args[2], SAFE_STRING(myeval), 1); in PHP_FUNCTION() 224 zval_ptr_dtor(&(args[i])); in PHP_FUNCTION() 227 MAKE_STD_ZVAL(args[3]); in PHP_FUNCTION() 228 ZVAL_STRINGL(args[3], SAFE_STRING(description), description_len, 1); in PHP_FUNCTION() 232 zval_ptr_dtor(&(args[i])); in PHP_FUNCTION() [all …]
|
/PHP-5.4/sapi/milter/ |
H A D | milter.php | 59 function milter_envfrom($args) argument 62 foreach ($args as $ix => $arg) { 71 function milter_envrcpt($args) argument 74 foreach ($args as $ix => $arg) {
|
/PHP-5.4/ext/intl/tests/ |
H A D | symfony_format_type_int32_intl2.phpt | 8 // StubNumberFormatterTest#testFormatTypeInt32Intl is tested many times, each with different args. 9 // there are 7 sets of args that crash PHP (and other args that don't), each of those 7 is now a se… 10 // to ensure that each of the 7 args are always tested. 12 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt32Intl
|
/PHP-5.4/ext/pcre/pcrelib/sljit/ |
H A D | sljitNativeX86_32.c | 77 compiler->args = args; in sljit_emit_enter() 82 size += (args > 0 ? (args * 2) : 0) + (args > 2 ? 2 : 0); in sljit_emit_enter() 84 size += (args > 0 ? (2 + args * 3) : 0); in sljit_emit_enter() 92 if (args > 0) { in sljit_emit_enter() 105 if (args > 0) { in sljit_emit_enter() 109 if (args > 1) { in sljit_emit_enter() 113 if (args > 2) { in sljit_emit_enter() 120 if (args > 0) { in sljit_emit_enter() 125 if (args > 1) { in sljit_emit_enter() 130 if (args > 2) { in sljit_emit_enter() [all …]
|