property         3607 Zend/zend_API.c ZEND_API int zend_declare_property_ex(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *doc_comment) /* {{{ */
property         3613 Zend/zend_API.c 		if ((access_type & ZEND_ACC_STATIC) || Z_CONSTANT_P(property)) {
property         3618 Zend/zend_API.c 		if (Z_CONSTANT_P(property)) {
property         3636 Zend/zend_API.c 		ZVAL_COPY_VALUE(&ce->default_static_members_table[property_info->offset], property);
property         3651 Zend/zend_API.c 		ZVAL_COPY_VALUE(&ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)], property);
property         3654 Zend/zend_API.c 		switch(Z_TYPE_P(property)) {
property         3683 Zend/zend_API.c ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type) /* {{{ */
property         3686 Zend/zend_API.c 	int ret = zend_declare_property_ex(ce, key, property, access_type, NULL);
property         3694 Zend/zend_API.c 	zval property;
property         3696 Zend/zend_API.c 	ZVAL_NULL(&property);
property         3697 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
property         3703 Zend/zend_API.c 	zval property;
property         3705 Zend/zend_API.c 	ZVAL_BOOL(&property, value);
property         3706 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
property         3712 Zend/zend_API.c 	zval property;
property         3714 Zend/zend_API.c 	ZVAL_LONG(&property, value);
property         3715 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
property         3721 Zend/zend_API.c 	zval property;
property         3723 Zend/zend_API.c 	ZVAL_DOUBLE(&property, value);
property         3724 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
property         3730 Zend/zend_API.c 	zval property;
property         3732 Zend/zend_API.c 	ZVAL_NEW_STR(&property, zend_string_init(value, strlen(value), ce->type & ZEND_INTERNAL_CLASS));
property         3733 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
property         3739 Zend/zend_API.c 	zval property;
property         3741 Zend/zend_API.c 	ZVAL_NEW_STR(&property, zend_string_init(value, value_len, ce->type & ZEND_INTERNAL_CLASS));
property         3742 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, &property, access_type);
property         3809 Zend/zend_API.c 	zval property;
property         3817 Zend/zend_API.c 	ZVAL_STR(&property, name);
property         3818 Zend/zend_API.c 	Z_OBJ_HT_P(object)->write_property(object, &property, value, NULL);
property         3826 Zend/zend_API.c 	zval property;
property         3834 Zend/zend_API.c 	ZVAL_STRINGL(&property, name, name_length);
property         3835 Zend/zend_API.c 	Z_OBJ_HT_P(object)->write_property(object, &property, value, NULL);
property         3836 Zend/zend_API.c 	zval_ptr_dtor(&property);
property         3909 Zend/zend_API.c 	zval *property;
property         3914 Zend/zend_API.c 	property = zend_std_get_static_property(scope, key, 0);
property         3917 Zend/zend_API.c 	if (!property) {
property         3920 Zend/zend_API.c 		if (property != value) {
property         3921 Zend/zend_API.c 			if (Z_ISREF_P(property)) {
property         3922 Zend/zend_API.c 				zval_dtor(property);
property         3923 Zend/zend_API.c 				ZVAL_COPY_VALUE(property, value);
property         3925 Zend/zend_API.c 					zval_opt_copy_ctor(property);
property         3930 Zend/zend_API.c 				ZVAL_COPY_VALUE(&garbage, property);
property         3937 Zend/zend_API.c 				ZVAL_COPY_VALUE(property, value);
property         4004 Zend/zend_API.c 	zval property, *value;
property         4013 Zend/zend_API.c 	ZVAL_STRINGL(&property, name, name_length);
property         4014 Zend/zend_API.c 	value = Z_OBJ_HT_P(object)->read_property(object, &property, silent?BP_VAR_IS:BP_VAR_R, NULL, rv);
property         4015 Zend/zend_API.c 	zval_ptr_dtor(&property);
property         4024 Zend/zend_API.c 	zval *property;
property         4029 Zend/zend_API.c 	property = zend_std_get_static_property(scope, key, silent);
property         4033 Zend/zend_API.c 	return property;
property          318 Zend/zend_API.h ZEND_API int zend_declare_property_ex(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *doc_comment);
property          319 Zend/zend_API.h ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type);
property         1363 Zend/zend_builtin_functions.c 	zend_string *property;
property         1368 Zend/zend_builtin_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zS", &object, &property) == FAILURE) {
property         1372 Zend/zend_builtin_functions.c 	if (property == NULL) {
property         1388 Zend/zend_builtin_functions.c 	if ((property_info = zend_hash_find_ptr(&ce->properties_info, property)) != NULL
property         1393 Zend/zend_builtin_functions.c 	ZVAL_STR(&property_z, property);
property         1133 Zend/zend_execute.c 		zval *property;
property         1136 Zend/zend_execute.c 			property = OBJ_PROP(zobj, prop_offset);
property         1137 Zend/zend_execute.c 			if (Z_TYPE_P(property) != IS_UNDEF) {
property         1139 Zend/zend_execute.c 				value = zend_assign_to_variable(property, value, value_type);
property         1153 Zend/zend_execute.c 				property = zend_hash_find(zobj->properties, Z_STR_P(property_name));
property         1154 Zend/zend_execute.c 				if (property) {
property         1270 Zend/zend_execute.c static zend_never_inline void zend_binary_assign_op_obj_dim(zval *object, zval *property, zval *value, zval *retval, binary_op_type binary_op)
property         1276 Zend/zend_execute.c 		(z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R, &rv)) != NULL) {
property         1288 Zend/zend_execute.c 		Z_OBJ_HT_P(object)->write_dimension(object, property, &res);
property         1354 Zend/zend_execute.c static zend_never_inline void zend_post_incdec_overloaded_property(zval *object, zval *property, void **cache_slot, int inc, zval *result)
property         1363 Zend/zend_execute.c 		z = Z_OBJ_HT(obj)->read_property(&obj, property, BP_VAR_R, cache_slot, &rv);
property         1389 Zend/zend_execute.c 		Z_OBJ_HT(obj)->write_property(&obj, property, &z_copy, cache_slot);
property         1399 Zend/zend_execute.c static zend_never_inline void zend_pre_incdec_overloaded_property(zval *object, zval *property, void **cache_slot, int inc, zval *result)
property         1408 Zend/zend_execute.c 		z = Z_OBJ_HT(obj)->read_property(&obj, property, BP_VAR_R, cache_slot, &rv);
property         1433 Zend/zend_execute.c 		Z_OBJ_HT(obj)->write_property(&obj, property, z, cache_slot);
property         1444 Zend/zend_execute.c static zend_never_inline void zend_assign_op_overloaded_property(zval *object, zval *property, void **cache_slot, zval *value, binary_op_type binary_op, zval *result)
property         1453 Zend/zend_execute.c 		z = Z_OBJ_HT(obj)->read_property(&obj, property, BP_VAR_R, cache_slot, &rv);
property         1471 Zend/zend_execute.c 		Z_OBJ_HT(obj)->write_property(&obj, property, z, cache_slot);
property          238 Zend/zend_language_parser.y %type <ast> absolute_trait_method_reference trait_method_reference property echo_expr
property          796 Zend/zend_language_parser.y 		property_list ',' property { $$ = zend_ast_list_add($1, $3); }
property          797 Zend/zend_language_parser.y 	|	property { $$ = zend_ast_create_list(1, ZEND_AST_PROP_DECL, $1); }
property          800 Zend/zend_language_parser.y property:
property          707 Zend/zend_vm_def.h 	zval *property;
property          721 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property          746 Zend/zend_vm_def.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property          756 Zend/zend_vm_def.h 			zend_assign_op_overloaded_property(object, property, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         1120 Zend/zend_vm_def.h 	zval *property;
property         1132 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1155 Zend/zend_vm_def.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         1177 Zend/zend_vm_def.h 			zend_pre_incdec_overloaded_property(object, property, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         1201 Zend/zend_vm_def.h 	zval *property;
property         1213 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1234 Zend/zend_vm_def.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         1254 Zend/zend_vm_def.h 			zend_post_incdec_overloaded_property(object, property, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         1873 Zend/zend_vm_def.h 	zval *property;
property         1877 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1891 Zend/zend_vm_def.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, OP1_TYPE, property, OP2_TYPE, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         1904 Zend/zend_vm_def.h 	zval *property;
property         1908 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         1921 Zend/zend_vm_def.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, OP1_TYPE, property, OP2_TYPE, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         2011 Zend/zend_vm_def.h 		zval *property;
property         2014 Zend/zend_vm_def.h 		property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         2033 Zend/zend_vm_def.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, OP1_TYPE, property, OP2_TYPE, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         2049 Zend/zend_vm_def.h 	zval *container, *property;
property         2060 Zend/zend_vm_def.h 	property = GET_OP2_ZVAL_PTR(BP_VAR_R);
property         2067 Zend/zend_vm_def.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, OP1_TYPE, property, OP2_TYPE, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         5343 Zend/zend_vm_execute.h 		zval *property;
property         5346 Zend/zend_vm_execute.h 		property = EX_CONSTANT(opline->op2);
property         5365 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CONST, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         9133 Zend/zend_vm_execute.h 		zval *property;
property         9136 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         9155 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CONST, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         10955 Zend/zend_vm_execute.h 		zval *property;
property         10958 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         10977 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CONST, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         12783 Zend/zend_vm_execute.h 		zval *property;
property         12786 Zend/zend_vm_execute.h 		property = EX_CONSTANT(opline->op2);
property         12805 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_TMP_VAR, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         14056 Zend/zend_vm_execute.h 		zval *property;
property         14059 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         14078 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_TMP_VAR, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         14570 Zend/zend_vm_execute.h 		zval *property;
property         14573 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         14592 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_TMP_VAR, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         16487 Zend/zend_vm_execute.h 	zval *property;
property         16501 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         16526 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         16536 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         16898 Zend/zend_vm_execute.h 	zval *property;
property         16910 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         16933 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         16955 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         16978 Zend/zend_vm_execute.h 	zval *property;
property         16990 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         17011 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         17031 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         17234 Zend/zend_vm_execute.h 	zval *property;
property         17238 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         17252 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         17265 Zend/zend_vm_execute.h 	zval *property;
property         17269 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         17282 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         17299 Zend/zend_vm_execute.h 		zval *property;
property         17302 Zend/zend_vm_execute.h 		property = EX_CONSTANT(opline->op2);
property         17321 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         17337 Zend/zend_vm_execute.h 	zval *container, *property;
property         17348 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         17355 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         19691 Zend/zend_vm_execute.h 	zval *property;
property         19705 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         19730 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         19740 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         20102 Zend/zend_vm_execute.h 	zval *property;
property         20114 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         20137 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         20159 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         20182 Zend/zend_vm_execute.h 	zval *property;
property         20194 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         20215 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         20235 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         20438 Zend/zend_vm_execute.h 	zval *property;
property         20442 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         20456 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         20469 Zend/zend_vm_execute.h 	zval *property;
property         20473 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         20486 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         20503 Zend/zend_vm_execute.h 		zval *property;
property         20506 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         20525 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         20541 Zend/zend_vm_execute.h 	zval *container, *property;
property         20552 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         20559 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         21350 Zend/zend_vm_execute.h 	zval *property;
property         21364 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         21389 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         21399 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         21763 Zend/zend_vm_execute.h 	zval *property;
property         21775 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         21798 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         21820 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         21844 Zend/zend_vm_execute.h 	zval *property;
property         21856 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         21877 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         21897 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         22102 Zend/zend_vm_execute.h 	zval *property;
property         22106 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         22120 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         22133 Zend/zend_vm_execute.h 	zval *property;
property         22137 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         22150 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         22167 Zend/zend_vm_execute.h 		zval *property;
property         22170 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         22189 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         22205 Zend/zend_vm_execute.h 	zval *container, *property;
property         22216 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         22223 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_VAR, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         22897 Zend/zend_vm_execute.h 	zval *property;
property         22911 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         22936 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         22946 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         23272 Zend/zend_vm_execute.h 	zval *property;
property         23284 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         23307 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         23329 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         23352 Zend/zend_vm_execute.h 	zval *property;
property         23364 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         23385 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         23405 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         23499 Zend/zend_vm_execute.h 	zval *property;
property         23503 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         23517 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         23530 Zend/zend_vm_execute.h 	zval *property;
property         23534 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         23547 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         23636 Zend/zend_vm_execute.h 		zval *property;
property         23639 Zend/zend_vm_execute.h 		property = EX_CONSTANT(opline->op2);
property         23658 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         23674 Zend/zend_vm_execute.h 	zval *container, *property;
property         23685 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         23692 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         25312 Zend/zend_vm_execute.h 	zval *property;
property         25326 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         25351 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         25361 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         25687 Zend/zend_vm_execute.h 	zval *property;
property         25699 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         25722 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         25744 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         25767 Zend/zend_vm_execute.h 	zval *property;
property         25779 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         25800 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         25820 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         25914 Zend/zend_vm_execute.h 	zval *property;
property         25918 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         25932 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         25945 Zend/zend_vm_execute.h 	zval *property;
property         25949 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         25962 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         26051 Zend/zend_vm_execute.h 		zval *property;
property         26054 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         26073 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         26089 Zend/zend_vm_execute.h 	zval *container, *property;
property         26100 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         26107 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         26799 Zend/zend_vm_execute.h 	zval *property;
property         26813 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         26838 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         26848 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         27175 Zend/zend_vm_execute.h 	zval *property;
property         27187 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         27210 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         27232 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         27256 Zend/zend_vm_execute.h 	zval *property;
property         27268 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         27289 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         27309 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         27405 Zend/zend_vm_execute.h 	zval *property;
property         27409 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         27423 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         27436 Zend/zend_vm_execute.h 	zval *property;
property         27440 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         27453 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         27543 Zend/zend_vm_execute.h 		zval *property;
property         27546 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         27565 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         27581 Zend/zend_vm_execute.h 	zval *container, *property;
property         27592 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         27599 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_UNUSED, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         30492 Zend/zend_vm_execute.h 	zval *property;
property         30506 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         30531 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         30541 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         30903 Zend/zend_vm_execute.h 	zval *property;
property         30915 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         30938 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         30960 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         30983 Zend/zend_vm_execute.h 	zval *property;
property         30995 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         31016 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         31036 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         31452 Zend/zend_vm_execute.h 	zval *property;
property         31456 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         31470 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         31483 Zend/zend_vm_execute.h 	zval *property;
property         31487 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         31500 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         31589 Zend/zend_vm_execute.h 		zval *property;
property         31592 Zend/zend_vm_execute.h 		property = EX_CONSTANT(opline->op2);
property         31611 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         31627 Zend/zend_vm_execute.h 	zval *container, *property;
property         31638 Zend/zend_vm_execute.h 	property = EX_CONSTANT(opline->op2);
property         31645 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CONST, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         35747 Zend/zend_vm_execute.h 	zval *property;
property         35761 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         35786 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         35796 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         36158 Zend/zend_vm_execute.h 	zval *property;
property         36170 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         36193 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         36215 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         36238 Zend/zend_vm_execute.h 	zval *property;
property         36250 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         36271 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         36291 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         36522 Zend/zend_vm_execute.h 	zval *property;
property         36526 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         36540 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         36553 Zend/zend_vm_execute.h 	zval *property;
property         36557 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         36570 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         36659 Zend/zend_vm_execute.h 		zval *property;
property         36662 Zend/zend_vm_execute.h 		property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         36681 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         36697 Zend/zend_vm_execute.h 	zval *container, *property;
property         36708 Zend/zend_vm_execute.h 	property = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
property         36715 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, IS_CV, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property         38407 Zend/zend_vm_execute.h 	zval *property;
property         38421 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         38446 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         38456 Zend/zend_vm_execute.h 			zend_assign_op_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), value, binary_op, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         38820 Zend/zend_vm_execute.h 	zval *property;
property         38832 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         38855 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         38877 Zend/zend_vm_execute.h 			zend_pre_incdec_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
property         38901 Zend/zend_vm_execute.h 	zval *property;
property         38913 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         38934 Zend/zend_vm_execute.h 			&& EXPECTED((zptr = Z_OBJ_HT_P(object)->get_property_ptr_ptr(object, property, BP_VAR_RW, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL))) != NULL)) {
property         38954 Zend/zend_vm_execute.h 			zend_post_incdec_overloaded_property(object, property, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), inc, EX_VAR(opline->result.var));
property         39187 Zend/zend_vm_execute.h 	zval *property;
property         39191 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         39205 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         39218 Zend/zend_vm_execute.h 	zval *property;
property         39222 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         39235 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_RW);
property         39325 Zend/zend_vm_execute.h 		zval *property;
property         39328 Zend/zend_vm_execute.h 		property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         39347 Zend/zend_vm_execute.h 		zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_W);
property         39363 Zend/zend_vm_execute.h 	zval *container, *property;
property         39374 Zend/zend_vm_execute.h 	property = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
property         39381 Zend/zend_vm_execute.h 	zend_fetch_property_address(EX_VAR(opline->result.var), container, IS_CV, property, (IS_TMP_VAR|IS_VAR), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(property)) : NULL), BP_VAR_UNSET);
property          179 ext/com_dotnet/com_handlers.c static void com_object_set(zval **property, zval *value)
property          184 ext/com_dotnet/com_handlers.c static zval *com_object_get(zval *property)
property          280 ext/com_dotnet/com_saproxy.c static void saproxy_object_set(zval **property, zval *value)
property          284 ext/com_dotnet/com_saproxy.c static zval *saproxy_object_get(zval *property)
property           85 ext/intl/uchar/uchar.c 	ZEND_ARG_INFO(0, property)
property          104 ext/intl/uchar/uchar.c 	ZEND_ARG_INFO(0, property)
property          122 ext/intl/uchar/uchar.c 	ZEND_ARG_INFO(0, property)
property          137 ext/intl/uchar/uchar.c 	ZEND_ARG_INFO(0, property)
property          338 ext/intl/uchar/uchar.c 	ZEND_ARG_INFO(0, property)
property          342 ext/intl/uchar/uchar.c 	zend_long property;
property          346 ext/intl/uchar/uchar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &property, &nameChoice) == FAILURE) {
property          350 ext/intl/uchar/uchar.c 	ret = u_getPropertyName((UProperty)property, (UPropertyNameChoice)nameChoice);
property          379 ext/intl/uchar/uchar.c 	ZEND_ARG_INFO(0, property)
property          384 ext/intl/uchar/uchar.c 	zend_long property, value, nameChoice = U_LONG_PROPERTY_NAME;
property          387 ext/intl/uchar/uchar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ll|l", &property, &value, &nameChoice) == FAILURE) {
property          391 ext/intl/uchar/uchar.c 	ret = u_getPropertyValueName((UProperty)property, value, (UPropertyNameChoice)nameChoice);
property          404 ext/intl/uchar/uchar.c 	ZEND_ARG_INFO(0, property)
property          408 ext/intl/uchar/uchar.c 	zend_long property;
property          412 ext/intl/uchar/uchar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ls", &property, &name, &name_len) == FAILURE) {
property          416 ext/intl/uchar/uchar.c 	RETURN_LONG(u_getPropertyValueEnum((UProperty)property, name));
property         4185 ext/reflection/php_reflection.c 	zval property;
property         4200 ext/reflection/php_reflection.c 			ZVAL_STR_COPY(&property, name);
property         4201 ext/reflection/php_reflection.c 			if (Z_OBJ_HANDLER(intern->obj, has_property)(&intern->obj, &property, 2, NULL)) {
property         4202 ext/reflection/php_reflection.c 				zval_ptr_dtor(&property);
property         4205 ext/reflection/php_reflection.c 			zval_ptr_dtor(&property);
property         4288 ext/reflection/php_reflection.c 	zval property;
property         4299 ext/reflection/php_reflection.c 		reflection_property_factory(ce, pptr, &property);
property         4300 ext/reflection/php_reflection.c 		add_next_index_zval(retval, &property);
property         4309 ext/reflection/php_reflection.c 	zval property;
property         4332 ext/reflection/php_reflection.c 		reflection_property_factory(ce, &property_info, &property);
property         4333 ext/reflection/php_reflection.c 		add_next_index_zval(retval, &property);
property         6594 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_STATIC", ZEND_ACC_STATIC);
property         6595 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PUBLIC", ZEND_ACC_PUBLIC);
property         6596 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PROTECTED", ZEND_ACC_PROTECTED);
property         6597 ext/reflection/php_reflection.c 	REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PRIVATE", ZEND_ACC_PRIVATE);
property         1622 ext/soap/php_encoding.c 			xmlNodePtr property;
property         1644 ext/soap/php_encoding.c 							property = xmlNewNode(NULL, BAD_CAST("BOGUS"));
property         1645 ext/soap/php_encoding.c 							xmlAddChild(node, property);
property         1646 ext/soap/php_encoding.c 							set_xsi_nil(property);
property         1648 ext/soap/php_encoding.c 							property = master_to_xml(enc, val, style, node);
property         1649 ext/soap/php_encoding.c 							if (property->children && property->children->content &&
property         1650 ext/soap/php_encoding.c 							    model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) {
property         1651 ext/soap/php_encoding.c 								soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content);
property         1654 ext/soap/php_encoding.c 						xmlNodeSetName(property, BAD_CAST(model->u.element->name));
property         1658 ext/soap/php_encoding.c 							xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens);
property         1659 ext/soap/php_encoding.c 							xmlSetNs(property, nsp);
property         1664 ext/soap/php_encoding.c 						property = xmlNewNode(NULL, BAD_CAST("BOGUS"));
property         1665 ext/soap/php_encoding.c 						xmlAddChild(node, property);
property         1666 ext/soap/php_encoding.c 						set_xsi_nil(property);
property         1670 ext/soap/php_encoding.c 						property = master_to_xml(enc, data, style, node);
property         1671 ext/soap/php_encoding.c 						if (property->children && property->children->content &&
property         1672 ext/soap/php_encoding.c 						    model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) {
property         1673 ext/soap/php_encoding.c 							soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content);
property         1676 ext/soap/php_encoding.c 					xmlNodeSetName(property, BAD_CAST(model->u.element->name));
property         1680 ext/soap/php_encoding.c 						xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens);
property         1681 ext/soap/php_encoding.c 						xmlSetNs(property, nsp);
property         1686 ext/soap/php_encoding.c 				property = xmlNewNode(NULL, BAD_CAST(model->u.element->name));
property         1687 ext/soap/php_encoding.c 				xmlAddChild(node, property);
property         1688 ext/soap/php_encoding.c 				set_xsi_nil(property);
property         1692 ext/soap/php_encoding.c 					xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens);
property         1693 ext/soap/php_encoding.c 					xmlSetNs(property, nsp);
property         1896 ext/soap/php_encoding.c 					xmlNodePtr property;
property         1898 ext/soap/php_encoding.c 						property = xmlNewNode(NULL, BAD_CAST("BOGUS"));
property         1899 ext/soap/php_encoding.c 						xmlAddChild(xmlParam, property);
property         1900 ext/soap/php_encoding.c 						set_xsi_nil(property);
property         1902 ext/soap/php_encoding.c 						property = master_to_xml(array_el->encode, val, style, xmlParam);
property         1904 ext/soap/php_encoding.c 					xmlNodeSetName(property, BAD_CAST(array_el->name));
property         1908 ext/soap/php_encoding.c 						xmlNsPtr nsp = encode_add_ns(property, array_el->namens);
property         1909 ext/soap/php_encoding.c 						xmlSetNs(property, nsp);
property         1963 ext/soap/php_encoding.c 			xmlNodePtr property;
property         1967 ext/soap/php_encoding.c 				property = master_to_xml(get_conversion(Z_TYPE_P(zprop)), zprop, style, xmlParam);
property         1980 ext/soap/php_encoding.c 						xmlNodeSetName(property, BAD_CAST(prop_name));
property          623 ext/xmlreader/php_xmlreader.c 	zend_long property;
property          627 ext/xmlreader/php_xmlreader.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &property) == FAILURE) {
property          635 ext/xmlreader/php_xmlreader.c 		retval = xmlTextReaderGetParserProp(intern->ptr,property);
property          987 ext/xmlreader/php_xmlreader.c 	zend_long property;
property          992 ext/xmlreader/php_xmlreader.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "lb", &property, &value) == FAILURE) {
property         1000 ext/xmlreader/php_xmlreader.c 		retval = xmlTextReaderSetParserProp(intern->ptr,property, value);
property         1186 ext/xmlreader/php_xmlreader.c 	ZEND_ARG_INFO(0, property)
property         1245 ext/xmlreader/php_xmlreader.c 	ZEND_ARG_INFO(0, property)