Lines Matching refs:property_info_ptr
4506 zend_property_info *property_info, *property_info_ptr; in zend_declare_typed_property() local
4575 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in zend_declare_typed_property()
4576 ZEND_ASSERT(property_info_ptr->flags & ZEND_ACC_STATIC); in zend_declare_typed_property()
4577 property_info->offset = property_info_ptr->offset; in zend_declare_typed_property()
4579 if (property_info_ptr->doc_comment && property_info_ptr->ce == ce) { in zend_declare_typed_property()
4580 zend_string_release(property_info_ptr->doc_comment); in zend_declare_typed_property()
4596 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in zend_declare_typed_property()
4597 ZEND_ASSERT(!(property_info_ptr->flags & ZEND_ACC_STATIC)); in zend_declare_typed_property()
4598 property_info->offset = property_info_ptr->offset; in zend_declare_typed_property()
4600 if (property_info_ptr->doc_comment && property_info_ptr->ce == ce) { in zend_declare_typed_property()
4601 zend_string_release_ex(property_info_ptr->doc_comment, 1); in zend_declare_typed_property()