Lines Matching refs:strict

805 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
807 if (UNEXPECTED(strict)) { in zend_verify_scalar_type_hint()
991 …inline bool i_zend_check_property_type(const zend_property_info *info, zval *property, bool strict) in i_zend_check_property_type() argument
1005 return zend_verify_scalar_type_hint(type_mask, property, strict, 0); in i_zend_check_property_type()
1008 …nline bool i_zend_verify_property_type(const zend_property_info *info, zval *property, bool strict) in i_zend_verify_property_type() argument
1010 if (i_zend_check_property_type(info, property, strict)) { in i_zend_verify_property_type()
1018 …ver_inline zend_verify_property_type(const zend_property_info *info, zval *property, bool strict) { in zend_verify_property_type() argument
1019 return i_zend_verify_property_type(info, property, strict); in zend_verify_property_type()
3518 const zend_property_info *info, const zval *zv, bool strict) { in i_zend_verify_type_assignable_zval() argument
3536 if (strict) { in i_zend_verify_type_assignable_zval()
3558 …_API bool ZEND_FASTCALL zend_verify_ref_assignable_zval(zend_reference *ref, zval *zv, bool strict) in zend_verify_ref_assignable_zval() argument
3570 int result = i_zend_verify_type_assignable_zval(prop, zv, strict); in zend_verify_ref_assignable_zval()
3633 …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
3645 ret = zend_verify_ref_assignable_zval(Z_REF_P(variable_ptr), &value, strict); in zend_assign_to_typed_ref_ex()
3668 …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
3671 zval *result = zend_assign_to_typed_ref_ex(variable_ptr, orig_value, value_type, strict, &garbage); in zend_assign_to_typed_ref()
3678 …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
3684 result = i_zend_verify_type_assignable_zval(prop_info, val, strict); in zend_verify_prop_assignable_by_ref_ex()
3704 if (i_zend_check_property_type(prop_info, val, strict)) { in zend_verify_prop_assignable_by_ref_ex()
3719 …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
3720 …return zend_verify_prop_assignable_by_ref_ex(prop_info, orig_val, strict, ZEND_VERIFY_PROP_ASSIGNA… in zend_verify_prop_assignable_by_ref()