Home
last modified time | relevance | path

Searched refs:fn (Results 126 – 150 of 253) sorted by relevance

1234567891011

/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_eucjp_to_utf8_0.phpt25 $fn = $prefix . DIRECTORY_SEPARATOR . $item;
27 $f = fopen($fn, 'r');
H A Dtest_cp1250_to_utf8_3.phpt25 $fn = $prefix . DIRECTORY_SEPARATOR . $item;
27 $f = fopen($fn, 'r');
H A Dtest_cp1251_zend_multibyte_0.phpt30 $fn = $prefix . DIRECTORY_SEPARATOR . $item;
32 $f = fopen($fn, 'r');
H A Dtest_cp932_0.phpt28 $fn = $prefix . DIRECTORY_SEPARATOR . $item;
30 $f = fopen($fn, 'r');
H A Dtest_cp932_to_utf8_0.phpt25 $fn = $prefix . DIRECTORY_SEPARATOR . $item;
27 $f = fopen($fn, 'r');
H A Dbug75063_utf8.phpt34 foreach(["test", "таст"] as \$fn) {
35 file_put_contents("\$fn.txt", "");
H A Dbug75063_cp1251.phpt36 foreach(["test", "����"] as \$fn) {
37 file_put_contents("\$fn.txt", "");
/php-src/ext/gd/tests/
H A Dimageconvolution_error3.phpt30 fn() => imageconvolution($image, $gaussian, 16, 0),
31 fn() => imageconvolution($image, $gaussian_bad_key, 16, 0)
H A Dimagecolorallocate_variation5.phpt41 fn() => imagecolorallocate($im, $value, $green, $blue),
42 fn() => imagecolorallocate($im, $red, $value, $blue),
43 fn() => imagecolorallocate($im, $red, $green, $value)
H A Dbug72730.phpt13 fn() => imagegammacorrect($img, -1, 1337)
H A Dbug72494.phpt12 fn() => imagecropauto($im, IMG_CROP_THRESHOLD, 0, 1337)
/php-src/Zend/tests/
H A Dself_method_or_prop_outside_class.phpt6 $fn = function() {
29 $fn();
H A Dfirst_class_callable_errors.phpt13 $fn = 123;
14 $fn(...);
H A Doss_fuzz_60441.phpt5 assert(fn()=>y)[y]??=y;
/php-src/ext/reflection/tests/
H A Dclosures_bound_getDeclaringFunction.phpt12 $fn = $closure->bindTo($b, B::class);
16 $rClosure = new ReflectionFunction($fn);
/php-src/ext/zlib/tests/
H A Dbug71417.phpt10 $fn = "bug71417.gz";
50 file_put_contents($fn, $compressed);
52 $r = fopen($fn, "r");
59 unlink($fn);
/php-src/ext/soap/
H A Dphp_packet_soap.h22 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na…
/php-src/Zend/tests/fibers/
H A Dunstarted-fiber.phpt6 $fiber = new Fiber(fn() => null);
H A Dfast-finish-fiber.phpt6 $fiber = new Fiber(fn() => 'test');
/php-src/Zend/tests/attributes/
H A D012_ast_export.phpt15 assert(0 && ($a = #[A1(1, 2, 1 + 2)] fn () => 1));
44 assert(): assert(0 && ($a = #[A1(1, 2, 1 + 2)] fn() => 1)) failed
/php-src/Zend/tests/arrow_functions/
H A D002.phpt8 var_dump((fn() => $b + $c)());
/php-src/Zend/
H A Dzend_inheritance.c1013 return fn->common.type == ZEND_USER_FUNCTION ? fn->op_array.filename : NULL; in func_filename()
1017 return fn->common.type == ZEND_USER_FUNCTION ? fn->op_array.line_start : 0; in func_lineno()
1958 return fn->common.scope->ce_flags & ZEND_ACC_TRAIT ? ce : fn->common.scope; in fixup_trait_scope()
1984 existing_fn, fixup_trait_scope(existing_fn, ce), fn, fixup_trait_scope(fn, ce), in zend_add_trait_method()
1996 ZSTR_VAL(fn->common.scope->name), ZSTR_VAL(fn->common.function_name), in zend_add_trait_method()
2025 fn, fixup_trait_scope(fn, ce), existing_fn, fixup_trait_scope(existing_fn, ce), in zend_add_trait_method()
2038 fn->common.scope = ce; in zend_fixup_trait_method()
2043 if (fn->type == ZEND_USER_FUNCTION && fn->op_array.static_variables) { in zend_fixup_trait_method()
2079 fn_copy = *fn; in zend_traits_copy_functions()
2310 zend_function *fn; in zend_do_traits_method_binding() local
[all …]
/php-src/ext/phar/tests/
H A D024-opcache-win32.phpt47 $fn = ($fi->isDir() ? 'rmdir' : 'unlink');
48 $fn($fi->getRealPath());
/php-src/ext/standard/tests/array/
H A Darray_sum_empty_array.phpt11 var_dump(array_reduce($input, fn($carry, $value) => $carry + $value, 0));
H A Darray_product_empty_array.phpt11 var_dump(array_reduce($input, fn($carry, $value) => $carry * $value, 1));

Completed in 45 milliseconds

1234567891011