Home
last modified time | relevance | path

Searched refs:iface (Results 1 – 8 of 8) sorted by relevance

/PHP-7.0/ext/reflection/tests/
H A DReflectionClass_isInstantiable_basic.phpt8 interface iface {
12 class ifaceImpl implements iface {
25 $classes = array("C", "iface", "ifaceImpl", "abstractClass", "D");
37 Is iface instantiable? bool(false)
H A DReflectionObject_isInstantiable_basic.phpt8 interface iface {
12 class ifaceImpl implements iface {
/PHP-7.0/Zend/
H A Dzend_inheritance.h27 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 Dzend_inheritance.c693 …ce->ce_flags & ZEND_ACC_INTERFACE) && iface->interface_gets_implemented && iface->interface_gets_i… in do_implement_interface()
696 if (UNEXPECTED(ce == iface)) { in do_implement_interface()
705 uint32_t i, ce_num, if_num = iface->num_interfaces; in zend_do_inherit_interfaces()
721 entry = iface->interfaces[if_num]; in zend_do_inherit_interfaces()
955 if (iface->type == ZEND_INTERNAL_CLASS) { in do_inherit_iface_constant()
983 } else if (ce->interfaces[i] == iface) { in zend_do_implement_interface()
994 do_inherit_constant_check(&iface->constants_table, zv, key, iface); in zend_do_implement_interface()
1004 ce->interfaces[ce->num_interfaces++] = iface; in zend_do_implement_interface()
1007 do_inherit_iface_constant(key, zv, ce, iface); in zend_do_implement_interface()
1018 do_implement_interface(ce, iface); in zend_do_implement_interface()
[all …]
H A Dzend.h166 …int (*interface_gets_implemented)(zend_class_entry *iface, zend_class_entry *class_type); /* a cla…
H A Dzend_vm_def.h7100 zend_class_entry *iface; variable
7103 iface = CACHED_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2)));
7104 if (UNEXPECTED(iface == NULL)) {
7105iface = zend_fetch_class_by_name(Z_STR_P(EX_CONSTANT(opline->op2)), EX_CONSTANT(opline->op2) + 1, …
7106 if (UNEXPECTED(iface == NULL)) {
7109 CACHE_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2)), iface);
7112 if (UNEXPECTED((iface->ce_flags & ZEND_ACC_INTERFACE) == 0)) {
7113 …ROR, "%s cannot implement %s - it is not an interface", ZSTR_VAL(ce->name), ZSTR_VAL(iface->name));
7115 zend_do_implement_interface(ce, iface);
H A Dzend_vm_execute.h2244 zend_class_entry *iface; local
2247 iface = CACHED_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2)));
2248 if (UNEXPECTED(iface == NULL)) {
2249iface = zend_fetch_class_by_name(Z_STR_P(EX_CONSTANT(opline->op2)), EX_CONSTANT(opline->op2) + 1, …
2250 if (UNEXPECTED(iface == NULL)) {
2253 CACHE_PTR(Z_CACHE_SLOT_P(EX_CONSTANT(opline->op2)), iface);
2256 if (UNEXPECTED((iface->ce_flags & ZEND_ACC_INTERFACE) == 0)) {
2257 …ROR, "%s cannot implement %s - it is not an interface", ZSTR_VAL(ce->name), ZSTR_VAL(iface->name));
2259 zend_do_implement_interface(ce, iface);
/PHP-7.0/
H A Dltmain.sh3359 iface=`expr $revision - $loop`
3361 verstring="$verstring_prefix$major.$iface:$verstring"
3382 iface=`expr $current - $loop`
3384 verstring="$verstring:${iface}.0"

Completed in 145 milliseconds