Home
last modified time | relevance | path

Searched refs:fn (Results 201 – 225 of 253) sorted by relevance

1234567891011

/php-src/tests/classes/
H A Dvisibility_003b.phpt16 // overload fn with same visibility
/php-src/ext/dom/tests/
H A DDOMXPath_evaluate_namespace_node_set.phpt20 return array_sum(array_map(fn ($node) => strlen($node->nodeName), $nodes));
H A DDOMElement_insertAdjacentText.phpt22 $transform = fn ($s) => $uppercase ? strtoupper($s) : $s;
/php-src/ext/reflection/tests/
H A Dbug71767.phpt31 $func2 = fn(
H A DReflectionFiber_notrace_2.phpt8 $f = new \Fiber(fn() => call_user_func(["Fiber", "suspend"]));
/php-src/ext/xsl/tests/
H A Dxpath_callables.inc27 …. implode('', array_map(fn($input) => '<xsl:value-of select="php:function(' . $input . ')" />', $i…
/php-src/ext/standard/tests/array/
H A Darray_product_objects_operation_no_cast.phpt13 var_dump(array_reduce($input, fn($carry, $value) => $carry * $value, 1));
/php-src/sapi/fuzzer/dict/
H A Dparser3 "fn"
/php-src/ext/curl/tests/
H A Dcurl_version_features-array.phpt8 print_r(array_map(fn ($v) => get_debug_type($v), $info_curl['feature_list']));
/php-src/ext/standard/tests/file/
H A Dtempnam_variation5-win32.phpt12 /* Passing an existing file as $prefix for tempnam() fn */
H A Dtempnam_variation5.phpt10 /* Passing an existing file as $prefix for tempnam() fn */
/php-src/ext/dom/tests/compareDocumentPosition/
H A Dentity.phpt21 usort($entities, fn ($a, $b) => strcmp($a->nodeName, $b->nodeName));
/php-src/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.h85 MBFLAPI extern void mb_illegal_output(uint32_t bad_cp, mb_from_wchar_fn fn, mb_convert_buf* buf);
H A Dmbfl_convert.c405 void mb_illegal_output(uint32_t bad_cp, mb_from_wchar_fn fn, mb_convert_buf* buf) in mb_illegal_output() argument
433 fn(temp, len, buf, false); in mb_illegal_output()
/php-src/ext/gd/tests/
H A Dbug67248.phpt15 fn() => imageaffinematrixget($i, new stdClass())
/php-src/Zend/tests/grammar/
H A Dsemi_reserved_001.phpt60 function fn(){ echo __METHOD__, PHP_EOL; }
141 $obj->fn();
222 Obj::fn
H A Dsemi_reserved_002.phpt59 static function fn(){ echo __METHOD__, PHP_EOL; }
137 Obj::fn();
217 Obj::fn
H A Dsemi_reserved_005.phpt58 const FN = 'fn';
214 fn
/php-src/Zend/tests/attributes/
H A D001_placement.phpt26 $f3 = #[A1(10)] fn () => 1;
/php-src/Zend/
H A Dzend_opcode.c295 zend_function *fn; in destroy_zend_class() local
469 ZEND_HASH_MAP_FOREACH_PTR(&ce->function_table, fn) { in destroy_zend_class()
470 if (fn->common.scope == ce) { in destroy_zend_class()
471 if (fn->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) { in destroy_zend_class()
472 zend_free_internal_arg_info(&fn->internal_function); in destroy_zend_class()
475 if (fn->common.attributes) { in destroy_zend_class()
476 zend_hash_release(fn->common.attributes); in destroy_zend_class()
477 fn->common.attributes = NULL; in destroy_zend_class()
H A Dzend_execute_API.c1044 zend_function *fn, zend_object *object, zend_class_entry *called_scope, zval *retval_ptr, in zend_call_known_function() argument
1051 ZEND_ASSERT(fn && "zend_function must be passed!"); in zend_call_known_function()
1061 fcic.function_handler = fn; in zend_call_known_function()
1069 fn->common.scope ? ZSTR_VAL(fn->common.scope->name) : "", in zend_call_known_function()
1070 fn->common.scope ? "::" : "", ZSTR_VAL(fn->common.function_name)); in zend_call_known_function()
1080 zend_function *fn, zend_object *object, zval *retval_ptr, zval *param1, zval *param2) in zend_call_known_instance_method_with_2_params() argument
1085 zend_call_known_instance_method(fn, object, retval_ptr, 2, params); in zend_call_known_instance_method_with_2_params()
/php-src/win32/
H A Dglob.c809 static int g_lstat(Char *fn, zend_stat_t *sb, glob_t *pglob) in g_lstat() argument
813 if (g_Ctoc(fn, buf, sizeof(buf))) in g_lstat()
820 static int g_stat(Char *fn, zend_stat_t *sb, glob_t *pglob) in g_stat() argument
824 if (g_Ctoc(fn, buf, sizeof(buf))) in g_stat()
/php-src/Zend/tests/
H A Dbug69180-backtrace.phpt9 print_r(array_map(fn ($v) => $v['class'] . '::' . $v['function'], debug_backtrace()));
/php-src/sapi/litespeed/
H A Dlsapilib.c2275 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachOrgHeader_r() argument
2284 if ( !pReq || !fn ) in LSAPI_ForeachOrgHeader_r()
2351 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachHeader_r() argument
2358 if ( !pReq || !fn ) in LSAPI_ForeachHeader_r()
2407 ret = (*fn)( achHeaderName, keyLen, in LSAPI_ForeachHeader_r()
2423 if ( !pEnv || !fn ) in EnvForeach()
2427 ret = (*fn)( pEnv->pKey, pEnv->keyLen, in EnvForeach()
2440 if ( !pReq || !fn ) in LSAPI_ForeachEnv_r()
2445 fn, arg ); in LSAPI_ForeachEnv_r()
2454 if ( !pReq || !fn ) in LSAPI_ForeachSpecialEnv_r()
[all …]
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_createFromFile_http_header.phpt62 …$responses = array_map(fn ($header) => "data://text/plain,HTTP/1.1 200 OK\r\nContent-Type: " . $he…

Completed in 54 milliseconds

1234567891011