/PHP-8.4/tests/classes/ |
H A D | type_hinting_005a.phpt | 2 Check type hint compatibility in overrides with array hints. 7 // Compatible hint. 10 // Class hint, should be array.
|
H A D | type_hinting_005d.phpt | 2 Check type hint compatibility in overrides with array hints. 7 // Array hint, should be nothing.
|
H A D | type_hinting_005c.phpt | 2 Check type hint compatibility in overrides with array hints. 7 // Array hint, should be class.
|
/PHP-8.4/ext/opcache/ |
H A D | shared_alloc_mmap.c | 204 void *hint; in create_segments() local 207 hint = find_prefered_mmap_base(requested_size); in create_segments() 212 hint = MAP_FAILED; in create_segments() 214 if (hint != MAP_FAILED) { in create_segments() 218 p = mmap(hint, requested_size, flags, MAP_SHARED|MAP_ANONYMOUS|MAP_HUGETLB|MAP_FIXED, -1, 0); in create_segments() 224 p = mmap(hint, requested_size, flags, MAP_SHARED|MAP_ANONYMOUS|MAP_FIXED, -1, 0); in create_segments()
|
/PHP-8.4/Zend/tests/typehints/ |
H A D | namespace_relative_scalar.phpt | 2 namespace\int is not a valid type hint
|
/PHP-8.4/Zend/tests/ |
H A D | bug54624.phpt | 2 Bug #54624 (class_alias and type hint)
|
H A D | bug37251.phpt | 2 Bug #37251 (deadlock when custom error handler is to catch array type hint error)
|
H A D | bug43332_2.phpt | 2 Bug #43332.2 (self and parent as type hint in namespace)
|
H A D | bug69802_2.phpt | 2 Bug #69802 (Reflection on Closure::__invoke borks type hint class name)
|
H A D | ns_056.phpt | 2 056: type-hint compatibility in namespaces
|
H A D | bug43332_1.phpt | 2 Bug #43332.1 (self and parent as type hint in namespace)
|
H A D | objects_022.phpt | 2 Testing 'self', 'parent' as type-hint
|
H A D | closure_027.phpt | 2 Closure 027: Testing Closure type-hint
|
H A D | callable_self_parent_static_deprecation.phpt | 53 echo "\n==> Test callable type hint\n"; 258 ==> Test callable type hint
|
/PHP-8.4/Zend/tests/object_types/ |
H A D | type_hint_in_function.phpt | 2 Adding a function object type hint
|
H A D | type_hint_in_class_method.phpt | 2 Adding a class method object type hint
|
H A D | type_hint_reflection.phpt | 2 Reflecting object type hint
|
/PHP-8.4/Zend/tests/return_types/ |
H A D | bug71978.phpt | 2 Bug #71978 (Existence of return type hint affects other compatibility rules)
|
/PHP-8.4/ext/reflection/tests/ |
H A D | bug39884.phpt | 2 Bug #39884 (ReflectionParameter::getClass() throws exception for type hint self)
|
H A D | bug69802.phpt | 2 Bug #69802 (Reflection on Closure::__invoke borks type hint class name)
|
/PHP-8.4/ext/xml/tests/ |
H A D | gh14834.phpt | 18 <element hint="hello'world">&foo;<![CDATA[ & ]]><?x & ?></element>
|
/PHP-8.4/ext/opcache/jit/ir/ |
H A D | ir_ra.c | 358 use_pos->hint = hint; in ir_add_use() 363 if (hint != IR_REG_NONE) { in ir_add_use() 380 use_pos->hint = IR_REG_NONE; in ir_add_phi_use() 398 use_pos->hint = hint; in ir_add_hint() 1795 if (p->hint != IR_REG_NONE) { in ir_hint_conflict() 1796 r1 = p->hint; in ir_hint_conflict() 1804 if (p->hint != IR_REG_NONE) { in ir_hint_conflict() 1805 r2 = p->hint; in ir_hint_conflict() 2648 reg = use_pos->hint; in ir_get_first_reg_hint() 2666 reg = use_pos->hint; in ir_try_allocate_preferred_reg() [all …]
|
H A D | ir_dump.c | 416 if (use_pos->hint >= 0) { in ir_dump_live_ranges() 417 fprintf(f, ", hint=%%%s", ir_reg_name(use_pos->hint, ival->type)); in ir_dump_live_ranges() 432 if (use_pos->hint >= 0) { in ir_dump_live_ranges() 433 fprintf(f, ", hint=%%%s", ir_reg_name(use_pos->hint, ival->type)); in ir_dump_live_ranges()
|
/PHP-8.4/ext/sockets/ |
H A D | sockets.c | 2447 zval *hint, *zhints = NULL; local 2462 ZEND_HASH_MAP_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(zhints), key, hint) { 2465 hints.ai_flags = zval_get_long(hint); 2467 hints.ai_socktype = zval_get_long(hint); 2469 hints.ai_protocol = zval_get_long(hint); 2471 hints.ai_family = zval_get_long(hint);
|
/PHP-8.4/ext/mysqli/tests/ |
H A D | mysqli_stmt_get_result_types.phpt | 71 printf("[%04d] [%d] Expecting %s/'%s' [type hint = %s], got %s/'%s'\n",
|