Lines Matching refs:strict

809 ZEND_API bool zend_verify_scalar_type_hint(uint32_t type_mask, zval *arg, bool strict, bool is_inte…  in zend_verify_scalar_type_hint()  argument
811 if (UNEXPECTED(strict)) { in zend_verify_scalar_type_hint()
1026 …inline bool i_zend_check_property_type(const zend_property_info *info, zval *property, bool strict) in i_zend_check_property_type() argument
1040 return zend_verify_scalar_type_hint(type_mask, property, strict, 0); in i_zend_check_property_type()
1043 …nline bool i_zend_verify_property_type(const zend_property_info *info, zval *property, bool strict) in i_zend_verify_property_type() argument
1045 if (i_zend_check_property_type(info, property, strict)) { in i_zend_verify_property_type()
1053 …ver_inline zend_verify_property_type(const zend_property_info *info, zval *property, bool strict) { in zend_verify_property_type() argument
1054 return i_zend_verify_property_type(info, property, strict); in zend_verify_property_type()
3692 const zend_property_info *info, const zval *zv, bool strict) { in i_zend_verify_type_assignable_zval() argument
3710 if (strict) { in i_zend_verify_type_assignable_zval()
3732 …_API bool ZEND_FASTCALL zend_verify_ref_assignable_zval(zend_reference *ref, zval *zv, bool strict) in zend_verify_ref_assignable_zval() argument
3744 int result = i_zend_verify_type_assignable_zval(prop, zv, strict); in zend_verify_ref_assignable_zval()
3807 …ed_ref_ex(zval *variable_ptr, zval *orig_value, uint8_t value_type, bool strict, zend_refcounted *… in zend_assign_to_typed_ref_ex() argument
3819 ret = zend_verify_ref_assignable_zval(Z_REF_P(variable_ptr), &value, strict); in zend_assign_to_typed_ref_ex()
3842 …al* zend_assign_to_typed_ref(zval *variable_ptr, zval *orig_value, uint8_t value_type, bool strict) in zend_assign_to_typed_ref() argument
3845 zval *result = zend_assign_to_typed_ref_ex(variable_ptr, orig_value, value_type, strict, &garbage); in zend_assign_to_typed_ref()
3852 …able_by_ref_ex(const zend_property_info *prop_info, zval *orig_val, bool strict, zend_verify_prop_… in zend_verify_prop_assignable_by_ref_ex() argument
3858 result = i_zend_verify_type_assignable_zval(prop_info, val, strict); in zend_verify_prop_assignable_by_ref_ex()
3878 if (i_zend_check_property_type(prop_info, val, strict)) { in zend_verify_prop_assignable_by_ref_ex()
3893 …d_verify_prop_assignable_by_ref(const zend_property_info *prop_info, zval *orig_val, bool strict) { in zend_verify_prop_assignable_by_ref() argument
3894 …return zend_verify_prop_assignable_by_ref_ex(prop_info, orig_val, strict, ZEND_VERIFY_PROP_ASSIGNA… in zend_verify_prop_assignable_by_ref()