Lines Matching refs:ce
153 zend_class_entry *ce = script ? zend_hash_find_ptr(&script->class_table, lcname) : NULL; in get_class_entry() local
154 if (ce) { in get_class_entry()
155 return ce; in get_class_entry()
158 ce = zend_hash_find_ptr(CG(class_table), lcname); in get_class_entry()
159 if (ce && ce->type == ZEND_INTERNAL_CLASS) { in get_class_entry()
160 return ce; in get_class_entry()
179 zend_class_entry *ce = get_class_entry(script, Z_STR_P(CRT_CONSTANT(opline->op1)+1)); in is_allocation_def() local
184 if (ce && !ce->parent && !ce->create_object && !ce->constructor && in is_allocation_def()
185 !ce->destructor && !ce->__get && !ce->__set && in is_allocation_def()
186 !(ce->ce_flags & forbidden_flags) && in is_allocation_def()
187 (ce->ce_flags & ZEND_ACC_CONSTANTS_UPDATED)) { in is_allocation_def()
246 zend_class_entry *ce = get_class_entry(script, Z_STR_P(CRT_CONSTANT(opline->op1)+1)); in is_local_def() local
247 if (ce && !ce->create_object && !ce->constructor && in is_local_def()
248 !ce->destructor && !ce->__get && !ce->__set && !ce->parent) { in is_local_def()