Searched refs:iface (Results 1 – 8 of 8) sorted by relevance
/PHP-7.1/ext/reflection/tests/ |
H A D | ReflectionClass_isInstantiable_basic.phpt | 8 interface iface { 12 class ifaceImpl implements iface { 25 $classes = array("C", "iface", "ifaceImpl", "abstractClass", "D"); 37 Is iface instantiable? bool(false)
|
H A D | ReflectionObject_isInstantiable_basic.phpt | 8 interface iface { 12 class ifaceImpl implements iface {
|
/PHP-7.1/Zend/ |
H A D | zend_inheritance.h | 27 ZEND_API void zend_do_inherit_interfaces(zend_class_entry *ce, const zend_class_entry *iface); 28 ZEND_API void zend_do_implement_interface(zend_class_entry *ce, zend_class_entry *iface);
|
H A D | zend_inheritance.c | 731 …ce->ce_flags & ZEND_ACC_INTERFACE) && iface->interface_gets_implemented && iface->interface_gets_i… in do_implement_interface() 734 if (UNEXPECTED(ce == iface)) { in do_implement_interface() 743 uint32_t i, ce_num, if_num = iface->num_interfaces; in zend_do_inherit_interfaces() 759 entry = iface->interfaces[if_num]; in zend_do_inherit_interfaces() 1030 } else if (ce->interfaces[i] == iface) { in zend_do_implement_interface() 1041 do_inherit_constant_check(&iface->constants_table, c, key, iface); in zend_do_implement_interface() 1051 ce->interfaces[ce->num_interfaces++] = iface; in zend_do_implement_interface() 1053 ZEND_HASH_FOREACH_STR_KEY_PTR(&iface->constants_table, key, c) { in zend_do_implement_interface() 1054 do_inherit_iface_constant(key, c, ce, iface); in zend_do_implement_interface() 1065 do_implement_interface(ce, iface); in zend_do_implement_interface() [all …]
|
H A D | zend.h | 151 …int (*interface_gets_implemented)(zend_class_entry *iface, zend_class_entry *class_type); /* a cla…
|
H A D | zend_vm_def.h | 7133 zend_class_entry *iface; variable 7136 iface = CACHED_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2))); 7137 if (UNEXPECTED(iface == NULL)) { 7138 …iface = zend_fetch_class_by_name(Z_STR_P(EX_CONSTANT(opline->op2)), EX_CONSTANT(opline->op2) + 1, … 7139 if (UNEXPECTED(iface == NULL)) { 7142 CACHE_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2)), iface); 7145 if (UNEXPECTED((iface->ce_flags & ZEND_ACC_INTERFACE) == 0)) { 7146 …ROR, "%s cannot implement %s - it is not an interface", ZSTR_VAL(ce->name), ZSTR_VAL(iface->name)); 7148 zend_do_implement_interface(ce, iface);
|
H A D | zend_vm_execute.h | 2312 zend_class_entry *iface; local 2315 iface = CACHED_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2))); 2316 if (UNEXPECTED(iface == NULL)) { 2317 …iface = zend_fetch_class_by_name(Z_STR_P(EX_CONSTANT(opline->op2)), EX_CONSTANT(opline->op2) + 1, … 2318 if (UNEXPECTED(iface == NULL)) { 2321 CACHE_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2)), iface); 2324 if (UNEXPECTED((iface->ce_flags & ZEND_ACC_INTERFACE) == 0)) { 2325 …ROR, "%s cannot implement %s - it is not an interface", ZSTR_VAL(ce->name), ZSTR_VAL(iface->name)); 2327 zend_do_implement_interface(ce, iface);
|
/PHP-7.1/ |
H A D | ltmain.sh | 3359 iface=`expr $revision - $loop` 3361 verstring="$verstring_prefix$major.$iface:$verstring" 3382 iface=`expr $current - $loop` 3384 verstring="$verstring:${iface}.0"
|
Completed in 171 milliseconds