Home
last modified time | relevance | path

Searched refs:f (Results 126 – 150 of 928) sorted by relevance

12345678910>>...38

/PHP-7.4/ext/reflection/tests/
H A DReflectionObject___toString_basic2.phpt9 $f = new foo;
10 $f->dynProp = 'hello';
11 $f->dynProp2 = 'hello again';
12 echo new ReflectionObject($f);
H A DReflectionObject_export_basic2.phpt9 $f = new foo;
10 $f->dynProp = 'hello';
11 $f->dynProp2 = 'hello again';
12 echo new ReflectionObject($f);
H A DReflectionClass_toString_002.phpt9 function f() {}
12 function f() {}
18 function f() {}
45 Method [ <user> public method f ] {
69 Method [ <user, overwrites A, prototype A> public method f ] {
93 Method [ <user, inherits B, prototype A> public method f ] {
117 Method [ <user, overwrites B, prototype A> public method f ] {
/PHP-7.4/tests/classes/
H A Dtype_hinting_005d.phpt5 Class C { function f($a) {} }
8 Class D extends C { function f(array $a) {} }
12 Warning: Declaration of D::f(array $a) should be compatible with C::f($a) in %s on line 5
H A Dtype_hinting_005c.phpt5 Class C { function f(SomeClass $a) {} }
8 Class D extends C { function f(array $a) {} }
12 Warning: Declaration of D::f(array $a) should be compatible with C::f(SomeClass $a) in %s on line 5
/PHP-7.4/ext/standard/tests/array/
H A Dshuffle_variation3.phpt103 float(%f)
105 float(%f)
107 float(%f)
109 float(%f)
111 float(%f)
113 float(%f)
115 float(%f)
124 float(-%f)
126 float(-%f)
128 float(-%f)
[all …]
/PHP-7.4/tests/lang/
H A Dengine_assignExecutionOrder_002.phpt7 $f = array("hello","item2","bye");
8 list($a,,$b) = $f;
22 // the f++++ makes f into 2, so $e 0 and 1 should both be 30
24 $f = 0;
29 list($e[$f++],$e[$f++]) = $g[2];
82 function f() {
84 $ee = array("array created in f()");
87 $ee["array entry created after f()"][f()] = "hello";
129 [0] => array created in f()
130 [array entry created after f()] => Array
/PHP-7.4/ext/standard/tests/strings/
H A Dvprintf_basic3.phpt15 $format1 = "%f";
16 $format2 = "%f %f";
17 $format3 = "%f %f %f";
H A Dstripslashes_variation4.phpt21 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar")),
22 array("f\\'oo", "b\\'ar", array("")),
23 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array(""))),
24 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array("fo\\'o", "b\\'ar")))
67 string(4) "f'oo"
82 string(4) "f'oo"
95 string(4) "f'oo"
115 string(4) "f'oo"
H A Dsprintf_variation34_64bit.phpt71 string(10) "0-9A-Fa-f]"
86 string(10) "0-9A-Fa-f]"
101 string(10) "0-9A-Fa-f]"
116 string(10) "0-9A-Fa-f]"
131 string(10) "0-9A-Fa-f]"
146 string(10) "0-9A-Fa-f]"
161 string(10) "0-9A-Fa-f]"
176 string(10) "0-9A-Fa-f]"
191 string(10) "0-9A-Fa-f]"
206 string(10) "0-9A-Fa-f]"
[all …]
H A Dsprintf_basic3.phpt16 $format1 = "%f";
17 $format2 = "%f %f";
18 $format3 = "%f %f %f";
/PHP-7.4/ext/standard/tests/file/
H A Dparse_ini_file_variation3.phpt15 $f = "parse_ini_file_variation3";
16 $dir1 = $pwd."/".$f.".dir1";
17 $dir2 = $pwd."/".$f.".dir2";
18 $dir3 = $pwd."/".$f.".dir3";
61 $f = "parse_ini_file_variation3";
64 $dir1 = $pwd."/".$f.".dir1";
65 $dir2 = $pwd."/".$f.".dir2";
66 $dir3 = $pwd."/".$f.".dir3";
/PHP-7.4/ext/standard/tests/streams/
H A Dstream_set_chunk_size.phpt28 $f = fopen("test://foo","r");
34 var_dump(stream_set_chunk_size($f, 1));
36 var_dump(strlen(fread($f, 10000)));
38 var_dump(fwrite($f, str_repeat('b', 3)));
41 var_dump(stream_set_chunk_size($f, 100));
43 var_dump(strlen(fread($f, 250)));
45 var_dump(strlen(fread($f, 50)));
47 var_dump(strlen(fread($f, 50)));
52 var_dump(stream_set_chunk_size($f, 0));
53 var_dump(stream_set_chunk_size($f, -1));
[all …]
/PHP-7.4/ext/standard/tests/general_functions/
H A Dis_resource.phpt5 $f = fopen(__FILE__, 'r');
6 fclose($f);
7 var_dump(is_resource($f));
/PHP-7.4/Zend/tests/
H A Dbug45180.phpt32 $f = 'FOO';
34 $f::C();
36 $f::$f();
38 foo::$f();
/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp932_to_utf8_0.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_big5_to_utf8_0.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_cp1250_to_utf8_3.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_cp932_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_cp1251_zend_multibyte_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_big5_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
/PHP-7.4/ext/intl/grapheme/
H A Dgrapheme_util.c68 if (f > str_len2 || (f < 0 && -f > str_len2)) { in grapheme_substr_ascii()
72 if (l < 0 && str_len2 < f - l) { in grapheme_substr_ascii()
79 if (f < 0) { in grapheme_substr_ascii()
80 f = str_len2 + f; in grapheme_substr_ascii()
81 if (f < 0) { in grapheme_substr_ascii()
82 f = 0; in grapheme_substr_ascii()
91 l = (str_len2 - f) + l; in grapheme_substr_ascii()
97 if (f >= str_len2) { in grapheme_substr_ascii()
101 if ((f + l) > str_len2) { in grapheme_substr_ascii()
102 l = str_len - f; in grapheme_substr_ascii()
[all …]
/PHP-7.4/ext/standard/tests/
H A Dbug49244.phpt7 printf("{%f} %1\$f\n", pow(-1.0, 0.3));
8 printf("{%f} %1\$f\n", pow(-1.0, 0.3));
/PHP-7.4/ext/opcache/tests/
H A Dbug65915.phpt14 $f = require $tmp;
15 var_dump($f());
20 $f = require $tmp;
21 var_dump($f());
/PHP-7.4/ext/com_dotnet/
H A Dcom_handlers.c265 if (f->arg_info) { in function_dtor()
266 efree(f->arg_info); in function_dtor()
268 efree(f); in function_dtor()
299 f.num_args = 0; in com_method_get()
300 f.arg_info = NULL; in com_method_get()
301 f.scope = obj->ce; in com_method_get()
306 fptr = &f; in com_method_get()
367 zend_hash_update_mem(obj->method_cache, name, &f, sizeof(f)); in com_method_get()
424 f.scope = obj->ce; \ in com_constructor_get()
426 f.num_args = 0; \ in com_constructor_get()
[all …]

Completed in 30 milliseconds

12345678910>>...38