Lines Matching refs:ce

1975 	zend_class_entry *ce;  variable
1981ce = zend_fetch_class(Z_STRVAL(opline->op1.u.constant), Z_STRLEN(opline->op1.u.constant), opline->…
1985 if (!ce) {
1988 EX(called_scope) = ce;
1990 ce = EX_T(opline->op1.u.var).class_entry;
1995 EX(called_scope) = ce;
2018 if (ce->get_static_method) {
2019 EX(fbc) = ce->get_static_method(ce, function_name_strval, function_name_strlen TSRMLS_CC);
2021 EX(fbc) = zend_std_get_static_method(ce, function_name_strval, function_name_strlen TSRMLS_CC);
2024 … zend_error_noreturn(E_ERROR, "Call to undefined method %s::%s()", ce->name, function_name_strval);
2032 if(!ce->constructor) {
2035 …if (EG(This) && Z_OBJCE_P(EG(This)) != ce->constructor->common.scope && (ce->constructor->common.f…
2036 zend_error(E_COMPILE_ERROR, "Cannot call private %s::__construct()", ce->name);
2038 EX(fbc) = ce->constructor;
2046 !instanceof_function(Z_OBJCE_P(EG(This)), ce TSRMLS_CC)) {
2560 zend_class_entry *ce; variable
2568 ce = Z_OBJCE_P(EG(exception));
2569 if (ce != EX_T(opline->op1.u.var).class_entry) {
2570 if (!instanceof_function(ce, EX_T(opline->op1.u.var).class_entry TSRMLS_CC)) {
2962 zend_class_entry *ce; variable
2972 ce = Z_OBJCE_P(obj);
2973 clone = ce ? ce->clone : NULL;
2976 if (ce) {
2977 zend_error_noreturn(E_ERROR, "Trying to clone an uncloneable object of class %s", ce->name);
2983 if (ce && clone) {
2987 if (ce != EG(scope)) {
2988 …zend_error_noreturn(E_ERROR, "Call to private %s::__clone() from context '%s'", ce->name, EG(scope…
2994 …zend_error_noreturn(E_ERROR, "Call to protected %s::__clone() from context '%s'", ce->name, EG(sco…
3039 zend_class_entry *ce; variable
3044ce = zend_fetch_class(Z_STRVAL(opline->op1.u.constant), Z_STRLEN(opline->op1.u.constant), opline->…
3048 if (!ce) {
3052 ce = EX_T(opline->op1.u.var).class_entry;
3055 …if (zend_hash_find(&ce->constants_table, Z_STRVAL(opline->op2.u.constant), Z_STRLEN(opline->op2.u.…
3060 EG(scope) = ce;
3581 zend_class_entry *ce = NULL; variable
3594 ce = Z_OBJCE_PP(array_ptr_ptr);
3595 if (!ce || ce->get_iterator == NULL) {
3619 ce = Z_OBJCE_P(array_ptr);
3620 if (ce && ce->get_iterator) {
3625 ce = Z_OBJCE_P(array_ptr);
3626 if (!ce || !ce->get_iterator) {
3644 if (ce && ce->get_iterator) {
3645 …iter = ce->get_iterator(ce, array_ptr, opline->extended_value & ZEND_FE_RESET_REFERENCE TSRMLS_CC);
3656 …zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Object of type %s did not create an Iterator", ce->nam…
3695 if (ce) {
4284 zend_class_entry *ce = EX_T(opline->op1.u.var).class_entry; variable
4289 …zend_error_noreturn(E_ERROR, "%s cannot implement %s - it is not an interface", ce->name, iface->n…
4291 zend_do_implement_interface(ce, iface TSRMLS_CC);