Searched defs:property_name (Results 1 - 4 of 4) sorted by relevance

/PHP_TRUNK/Zend/
H A Dzend_execute.c670 static inline void zend_assign_to_object(zval **retval, zval **object_ptr, zval *property_name, int value_type, znode_op *value_op, const zend_execute_data *execute_data, int opcode, const zend_literal *key TSRMLS_DC) argument
751 Z_OBJ_HT_P(object)->write_property(object, property_name, value, key TSRMLS_CC);
753 /* Note: property_name in this case is really the array index! */
757 Z_OBJ_HT_P(object)->write_dimension(object, property_name, value TSRMLS_CC);
H A Dzend_vm_def.h1614 zval *property_name; variable
1618 property_name = GET_OP2_ZVAL_PTR(BP_VAR_R);
1621 MAKE_REAL_ZVAL_PTR(property_name); variable
1626 zend_assign_to_object(RETURN_VALUE_USED(opline)?&EX_T(opline->result.var).var.ptr:NULL, object_ptr, property_name, (opline+1)->op1_type, &(opline+1)->op1, execute_data, ZEND_ASSIGN_OBJ, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
1628 zval_ptr_dtor(&property_name); variable
1653 zval *property_name = GET_OP2_ZVAL_PTR(BP_VAR_R); variable
1656 MAKE_REAL_ZVAL_PTR(property_name); variable
1658 zend_assign_to_object(RETURN_VALUE_USED(opline)?&EX_T(opline->result.var).var.ptr:NULL, object_ptr, property_name, (opline+1)->op1_type, &(opline+1)->op1, execute_data, ZEND_ASSIGN_DIM, ((OP2_TYPE == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
1660 zval_ptr_dtor(&property_name); variable
H A Dzend_vm_execute.h15179 zval *property_name; local
15183 property_name = opline->op2.zv;
15186 MAKE_REAL_ZVAL_PTR(property_name);
15191 zend_assign_to_object(RETURN_VALUE_USED(opline)?&EX_T(opline->result.var).var.ptr:NULL, object_ptr, property_name, (opline+1)->op1_type, &(opline+1)->op1, execute_data, ZEND_ASSIGN_OBJ, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
15193 zval_ptr_dtor(&property_name);
15218 zval *property_name = opline->op2.zv; local
15221 MAKE_REAL_ZVAL_PTR(property_name);
15223 zend_assign_to_object(RETURN_VALUE_USED(opline)?&EX_T(opline->result.var).var.ptr:NULL, object_ptr, property_name, (opline+1)->op1_type, &(opline+1)->op1, execute_data, ZEND_ASSIGN_DIM, ((IS_CONST == IS_CONST) ? opline->op2.literal : NULL) TSRMLS_CC);
15225 zval_ptr_dtor(&property_name);
17524 zval *property_name; local
17563 zval *property_name = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC); local
19780 zval *property_name; local
19819 zval *property_name = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC); local
21447 zval *property_name = NULL; local
23234 zval *property_name; local
23273 zval *property_name = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC); local
25012 zval *property_name; local
26430 zval *property_name; local
27753 zval *property_name; local
29500 zval *property_name; local
32662 zval *property_name; local
32701 zval *property_name = opline->op2.zv; local
34777 zval *property_name; local
34816 zval *property_name = _get_zval_ptr_tmp(opline->op2.var, execute_data, &free_op2 TSRMLS_CC); local
36898 zval *property_name; local
36937 zval *property_name = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2 TSRMLS_CC); local
38433 zval *property_name = NULL; local
40071 zval *property_name; local
40110 zval *property_name = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC); local
[all...]
H A Dzend_object_handlers.c1239 ZEND_API zval **zend_std_get_static_property(zend_class_entry *ce, const char *property_name, int property_name_len, zend_bool silent, const zend_literal *key TSRMLS_DC) /* {{{ */ argument
1249 hash_value = zend_hash_func(property_name, property_name_len+1);
1252 if (UNEXPECTED(zend_hash_quick_find(&ce->properties_info, property_name, property_name_len+1, hash_value, (void **) &property_info)==FAILURE)) {
1254 zend_error_noreturn(E_ERROR, "Access to undeclared static property: %s::$%s", ce->name, property_name);
1260 zend_printf("Access type for %s::%s is %s\n", ce->name, property_name, zend_visibility_string(property_info->flags));
1265 zend_error_noreturn(E_ERROR, "Cannot access %s property %s::$%s", zend_visibility_string(property_info->flags), ce->name, property_name);
1272 zend_error_noreturn(E_ERROR, "Access to undeclared static property: %s::$%s", ce->name, property_name);
1287 zend_error_noreturn(E_ERROR, "Access to undeclared static property: %s::$%s", ce->name, property_name);
1296 ZEND_API zend_bool zend_std_unset_static_property(zend_class_entry *ce, const char *property_name, int property_name_len, const zend_literal *key TSRMLS_DC) /* {{{ */ argument
1298 zend_error_noreturn(E_ERROR, "Attempt to unset static property %s::$%s", ce->name, property_name);
[all...]

Completed in 51 milliseconds