Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 388) sorted by relevance

12345678910>>...16

/PHP-7.1/tests/output/
H A Dob_start_basic_004.phpt44 f[call:1; len:1]1
45 f[call:2; len:1]2
46 f[call:3; len:1]3
47 f[call:4; len:1]4
48 f[call:5; len:1]5
49 f[call:6; len:1]6
50 f[call:7; len:1]7
52 f[call:9; len:0]
59 f[call:5; len:0]
69 f[call:3; len:0]
[all …]
H A Dob_start_basic_unerasable_001.phpt13 echo "This call will obtain the content:\n";
19 [callback:1]This call will obtain the content:
20 string(35) "This call will obtain the content:
/PHP-7.1/ext/opcache/Optimizer/
H A Doptimize_func_calls.c47 int call = 0; in zend_delete_call_instructions() local
56 if (call == 0) { in zend_delete_call_instructions()
64 call--; in zend_delete_call_instructions()
70 call++; in zend_delete_call_instructions()
74 if (call == 0) { in zend_delete_call_instructions()
154 int call = 0; in zend_optimize_func_calls() local
179 call++; in zend_optimize_func_calls()
185 call--; in zend_optimize_func_calls()
186 if (call_stack[call].func && call_stack[call].opline) { in zend_optimize_func_calls()
219 call_stack[call].func = NULL; in zend_optimize_func_calls()
[all …]
H A Dzend_call_graph.c89 int call = 0; in zend_analyze_calls() local
100 call_stack[call] = call_info; in zend_analyze_calls()
129 call++; in zend_analyze_calls()
136 call_stack[call] = call_info; in zend_analyze_calls()
138 call++; in zend_analyze_calls()
148 call--; in zend_analyze_calls()
271 zend_call_info **map, *call; in zend_build_call_map() local
278 for (call = info->callee_info; call; call = call->next_callee) { in zend_build_call_map()
280 map[call->caller_init_opline - op_array->opcodes] = call; in zend_build_call_map()
281 map[call->caller_call_opline - op_array->opcodes] = call; in zend_build_call_map()
[all …]
/PHP-7.1/tests/lang/
H A DpassByReference_003.phpt6 echo "\nInside passbyVal call:\n";
11 echo "\nInside passbyRef call:\n";
17 echo "\nAfter call\n";
22 echo "\nAfter call\n";
30 Inside passbyVal call:
33 After call
40 Inside passbyRef call:
43 After call
H A DpassByReference_007.phpt45 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 Dengine_assignExecutionOrder_003.phpt10 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 DreturnByReference.006.phpt23 echo "\n---> 1. Via a return by ref function call, assign by reference the return value of a functi…
30 echo "\n---> 2. Via a return by ref function call, assign by reference the return value of a functi…
37 echo "\n---> 3. Via a return by ref function call, assign by reference the return value of a functi…
46 ---> 1. Via a return by ref function call, assign by reference the return value of a function that …
52 ---> 2. Via a return by ref function call, assign by reference the return value of a function that …
58 ---> 3. Via a return by ref function call, assign by reference the return value of a function that …
/PHP-7.1/Zend/tests/
H A Dbug38220.phpt30 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 Ddynamic_call_006.phpt34 Warning: Cannot call extract() dynamically in %s on line %d
36 Warning: Cannot call compact() dynamically in %s on line %d
38 Warning: Cannot call parse_str() with a single argument dynamically in %s on line %d
40 Warning: Cannot call get_defined_vars() dynamically in %s on line %d
42 Warning: Cannot call assert() with string argument dynamically in %s on line %d
44 Warning: Cannot call func_get_args() dynamically in %s on line %d
46 Warning: Cannot call func_get_arg() dynamically in %s on line %d
48 Warning: Cannot call func_num_args() dynamically in %s on line %d
H A Dbug38047.phpt22 foreach ($backtrace as $call) {
24 if (isset($call["file"])) {
25 echo $call["file"];
26 if (isset($call["line"])) {
27 echo ":".$call["line"];
30 if (isset($call["function"])) {
31 echo " ".$call["function"]."()";
38 //This will not create file and line items for the call into the error handler
H A Dclosure_call.phpt2 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 Dbug54358.phpt6 public function call($function) {
13 $asserter->call($function = 'md5');
21 $asserter->call($function);
29 $asserter->call($function);
/PHP-7.1/ext/reflection/tests/
H A DReflectionGenerator_in_Generator.phpt6 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 Dbug60367.phpt9 public static function call() {
21 $method = new ReflectionMethod("b::call");
24 $method = new ReflectionMethod("A::call");
/PHP-7.1/ext/standard/tests/general_functions/
H A Dcallbacks_001.phpt21 public function call($cb) {
26 $this->call(array('parent', 'who'));
27 $this->call(array('C', 'parent::who'));
28 $this->call(array('B', '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'));
71 $this->call(array($this, 'O::who'));
[all …]
/PHP-7.1/Zend/
H A Dzend_execute.h168 call->func = func; in zend_vm_init_call_frame()
170 Z_OBJ(call->This) = object; in zend_vm_init_call_frame()
173 Z_CE(call->This) = called_scope; in zend_vm_init_call_frame()
176 ZEND_CALL_NUM_ARGS(call) = num_args; in zend_vm_init_call_frame()
189 return call; in zend_vm_stack_push_call_frame_ex()
193 return call; in zend_vm_stack_push_call_frame_ex()
218 zval *end = ZEND_CALL_VAR_NUM(call, call->func->op_array.last_var + call->func->op_array.T); in zend_vm_stack_free_extra_args_ex()
219 zval *p = end + (ZEND_CALL_NUM_ARGS(call) - call->func->op_array.num_args); in zend_vm_stack_free_extra_args_ex()
237 zend_vm_stack_free_extra_args_ex(ZEND_CALL_INFO(call), call); in zend_vm_stack_free_extra_args()
275 EG(vm_stack_top) = (zval*)call; in zend_vm_stack_free_call_frame_ex()
[all …]
/PHP-7.1/ext/standard/tests/file/
H A Dfseek_dir_basic.phpt13 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-7.1/ext/intl/tests/
H A Ddateformat_get_timetype.phpt30 $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 Ddateformat_get_datetype.phpt30 $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 Ddateformat_is_set_lenient.phpt23 $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 Ddateformat_get_locale.phpt31 $res_str .= "\nAfter call to get_locale : locale= $locale";
52 After call to get_locale : locale= de_DE
55 After call to get_locale : locale= sl
58 After call to get_locale : locale= en
61 After call to get_locale : locale= hi
H A Ddateformat_get_timezone_id.phpt31 $res_str .= "\nAfter call to get_timezone_id : timezone_id= $timezone_id";
46 After call to get_timezone_id : timezone_id= America/New_York
49 After call to get_timezone_id : timezone_id= US/Pacific
52 After call to get_timezone_id : timezone_id= US/Central
/PHP-7.1/ext/curl/tests/
H A Dcurl_setopt_basic004.phpt2 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-7.1/ext/xml/tests/
H A Dbug72085.phpt19 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
25 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
31 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
37 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
43 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
49 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
55 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
61 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
67 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d
73 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d

Completed in 42 milliseconds

12345678910>>...16