/php-src/tests/output/ |
H A D | ob_start_basic_004.phpt | 43 f[call:1; len:1]1 44 f[call:2; len:1]2 45 f[call:3; len:1]3 46 f[call:4; len:1]4 47 f[call:5; len:1]5 48 f[call:6; len:1]6 49 f[call:7; len:1]7 51 f[call:9; len:0] 58 f[call:5; len:0] 68 f[call:3; len:0] [all …]
|
H A D | ob_start_basic_unerasable_001.phpt | 13 echo "This call will obtain the content:\n"; 18 [callback:1]This call will obtain the content: 19 string(35) "This call will obtain the content:
|
/php-src/Zend/Optimizer/ |
H A D | optimize_func_calls.c | 42 int call = 0; in zend_delete_call_instructions() local 52 if (call == 0) { in zend_delete_call_instructions() 60 call--; in zend_delete_call_instructions() 66 call++; in zend_delete_call_instructions() 70 if (call == 0) { in zend_delete_call_instructions() 155 int call = 0; in zend_optimize_func_calls() local 178 call_stack[call].try_inline = in zend_optimize_func_calls() 187 call++; in zend_optimize_func_calls() 194 call--; in zend_optimize_func_calls() 195 if (call_stack[call].func && call_stack[call].opline) { in zend_optimize_func_calls() [all …]
|
H A D | zend_call_graph.c | 52 int call = 0; in zend_analyze_calls() local 65 call_stack[call] = call_info; in zend_analyze_calls() 97 call++; in zend_analyze_calls() 106 call++; in zend_analyze_calls() 135 call--; in zend_analyze_calls() 267 zend_call_info **map, *call; in zend_build_call_map() local 274 for (call = info->callee_info; call; call = call->next_callee) { in zend_build_call_map() 276 map[call->caller_init_opline - op_array->opcodes] = call; in zend_build_call_map() 278 map[call->caller_call_opline - op_array->opcodes] = call; in zend_build_call_map() 280 if (!call->is_frameless) { in zend_build_call_map() [all …]
|
/php-src/ext/zend_test/tests/ |
H A D | zend_forbid_dynamic_call.phpt | 9 $object->call(); 13 $call = [$object, 'call']; 14 $call(); 28 Cannot call ZendTestForbidDynamicCall::call() dynamically 29 Cannot call ZendTestForbidDynamicCall::callStatic() dynamically
|
/php-src/Zend/tests/ |
H A D | bug38220.phpt | 30 echo "before call $method\n"; 33 echo "after call $method\n"; 63 before call func1 69 after call func1 71 before call close 77 after call close 78 before call func1 84 after call func1 86 before call close 92 after call close
|
H A D | closure_call.phpt | 2 Closure::call 23 var_dump($qux->call($foo)); 26 var_dump($qux->call($foobar)); 37 var_dump($bar->call($elePHPant)); 45 var_dump($beta->call($foobar, 7)); 47 // Ensure ->call calls with scope of passed object 56 $foo->call(new FooBar);
|
H A D | bug54358.phpt | 6 public function call($function) { 13 $asserter->call($function = 'md5'); 21 $asserter->call($function); 29 $asserter->call($function);
|
/php-src/tests/lang/ |
H A D | passByReference_003.phpt | 6 echo "\nInside passbyVal call:\n"; 11 echo "\nInside passbyRef call:\n"; 17 echo "\nAfter call\n"; 22 echo "\nAfter call\n"; 32 Inside passbyVal call: 35 After call 42 Inside passbyRef call: 45 After call
|
H A D | passByReference_007.phpt | 45 echo "Pass a function call that returns a value:\n"; 50 echo "Pass a function call that returns a reference:\n"; 56 echo "\nPass a static method call that returns a value:\n"; 68 echo "\nPass a method call that returns a value:\n"; 73 echo "Pass a method call that returns a reference:\n"; 80 Pass a function call that returns a value: 85 Pass a function call that returns a reference: 89 Pass a static method call that returns a value: 94 Pass a static method call that returns a reference: 98 Pass a method call that returns a value: [all …]
|
H A D | engine_assignExecutionOrder_003.phpt | 10 echo "Bad call\n"; 15 echo "Good call\n"; 34 echo "Good call\n"; 39 echo "Bad call\n"; 85 Good call 86 Good call
|
H A D | passByReference_006.phpt | 31 echo "\n ---- Pass uninitialized array & object by ref: function call ---\n"; 36 echo "\n ---- Pass uninitialized arrays & objects by ref: static method call ---\n"; 46 echo "\n ---- Pass uninitialized arrays & objects by ref: instance method call ---\n"; 53 ---- Pass uninitialized array & object by ref: function call --- 66 ---- Pass uninitialized arrays & objects by ref: static method call --- 93 ---- Pass uninitialized arrays & objects by ref: instance method call ---
|
/php-src/ext/reflection/tests/ |
H A D | ReflectionGenerator_in_Generator.phpt | 6 function call(ReflectionGenerator $ref, $method, $rec = true) { 8 call($ref, $method, false); 15 call($ref, "getTrace"); 16 call($ref, "getExecutingLine"); 17 call($ref, "getExecutingFile"); 18 call($ref, "getExecutingGenerator"); 19 call($ref, "getFunction"); 20 call($ref, "getThis");
|
H A D | bug60367.phpt | 9 public static function call() { 21 $method = ReflectionMethod::createFromMethodName("b::call"); 24 $method = ReflectionMethod::createFromMethodName("A::call");
|
/php-src/ext/standard/tests/file/ |
H A D | fseek_dir_basic.phpt | 13 echo "call readdir():\n"; 24 echo "call readdir():\n"; 33 echo "call readdir():\n"; 44 call readdir(): 61 call fseek() on directory resource: 63 call readdir(): 79 call fseek() with different arguments on directory resource: 81 call readdir():
|
/php-src/Zend/tests/dynamic_call/ |
H A D | dynamic_call_006.phpt | 53 Cannot call extract() dynamically 54 Cannot call compact() dynamically 55 Cannot call get_defined_vars() dynamically 56 Cannot call func_get_args() dynamically 57 Cannot call func_get_arg() dynamically 58 Cannot call func_num_args() dynamically
|
/php-src/ext/standard/tests/general_functions/ |
H A D | callbacks_001.phpt | 21 public function call($cb) { 26 $this->call(array('parent', 'who')); 27 $this->call(array('C', 'parent::who')); 28 $this->call(array('B', 'parent::who')); 29 $this->call(array('E', 'parent::who')); 30 $this->call(array('A', 'who')); 31 $this->call(array('C', 'who')); 32 $this->call(array('B', 'who2')); 64 public function call($cb) { 69 $this->call(array('parent', 'who')); [all …]
|
/php-src/Zend/ |
H A D | zend_execute.h | 263 call->func = func; in zend_vm_init_call_frame() 265 ZEND_CALL_INFO(call) = call_info; in zend_vm_init_call_frame() 279 return call; in zend_vm_stack_push_call_frame_ex() 283 return call; in zend_vm_stack_push_call_frame_ex() 308 uint32_t count = ZEND_CALL_NUM_ARGS(call) - call->func->op_array.num_args; in zend_vm_stack_free_extra_args_ex() 309 zval *p = ZEND_CALL_VAR_NUM(call, call->func->op_array.last_var + call->func->op_array.T); in zend_vm_stack_free_extra_args_ex() 319 zend_vm_stack_free_extra_args_ex(ZEND_CALL_INFO(call), call); in zend_vm_stack_free_extra_args() 327 zval *p = ZEND_CALL_ARG(call, 1); in zend_vm_stack_free_args() 350 EG(vm_stack_top) = (zval*)call; in zend_vm_stack_free_call_frame_ex() 358 zend_vm_stack_free_call_frame_ex(ZEND_CALL_INFO(call), call); in zend_vm_stack_free_call_frame() [all …]
|
H A D | zend_attributes.c | 266 zend_execute_data *call = NULL; in zend_get_attribute_object() local 276 call = zend_vm_stack_push_call_frame_ex( in zend_get_attribute_object() 282 opline = (zend_op*)(call + 1); in zend_get_attribute_object() 287 call->opline = opline; in zend_get_attribute_object() 288 call->call = NULL; in zend_get_attribute_object() 289 call->return_value = NULL; in zend_get_attribute_object() 290 call->func = (zend_function*)(call->opline + 1); in zend_get_attribute_object() 294 call->func->type = ZEND_USER_FUNCTION; in zend_get_attribute_object() 295 call->func->op_array.fn_flags = in zend_get_attribute_object() 300 EG(current_execute_data) = call; in zend_get_attribute_object() [all …]
|
/php-src/ext/intl/tests/ |
H A D | dateformat_get_timetype.phpt | 30 $res_str .= "\nAfter call to get_timetype : timetype= $time_type"; 45 After call to get_timetype : timetype= 0 48 After call to get_timetype : timetype= 1 51 After call to get_timetype : timetype= 2 54 After call to get_timetype : timetype= 3 57 After call to get_timetype : timetype= -1
|
H A D | dateformat_get_datetype.phpt | 30 $res_str .= "\nAfter call to get_datetype : datetype= $date_type"; 45 After call to get_datetype : datetype= 0 48 After call to get_datetype : datetype= 1 51 After call to get_datetype : datetype= 2 54 After call to get_datetype : datetype= 3 57 After call to get_datetype : datetype= -1
|
H A D | dateformat_is_set_lenient.phpt | 23 $res_str .= "After call to get_lenient : lenient= "; 41 $res_str .= "After call to is_lenient : lenient= "; 60 $res_str .= "After call to is_lenient : lenient= "; 80 After call to get_lenient : lenient= TRUE 83 After call to is_lenient : lenient= TRUE 86 After call to is_lenient : lenient= FALSE
|
H A D | dateformat_get_locale.phpt | 32 $res_str .= "\nAfter call to get_locale : locale= $locale"; 53 After call to get_locale : locale= de_DE 56 After call to get_locale : locale= sl 59 After call to get_locale : locale= en 62 After call to get_locale : locale= hi
|
/php-src/ext/curl/tests/ |
H A D | curl_setopt_basic004.phpt | 2 curl_setopt() call with CURLOPT_RETURNTRANSFER 15 echo "*** curl_setopt() call with CURLOPT_RETURNTRANSFER set to 1\n"; 28 echo "*** curl_setopt() call with CURLOPT_RETURNTRANSFER set to 0\n"; 42 *** curl_setopt() call with CURLOPT_RETURNTRANSFER set to 1 44 *** curl_setopt() call with CURLOPT_RETURNTRANSFER set to 0
|
/php-src/Zend/asm/ |
H A D | make_i386_sysv_elf_gas.S | 72 call 1f 82 call 2f 102 call 3f 112 call _exit@PLT
|