prop_name_length 4393 Zend/zend_compile.c static zend_class_entry* find_first_definition(zend_class_entry *ce, size_t current_trait, const char* prop_name, int prop_name_length, ulong prop_hash, zend_class_entry *coliding_ce) /* {{{ */
prop_name_length 4399 Zend/zend_compile.c 			if (zend_hash_quick_exists(&ce->traits[i]->properties_info, prop_name, prop_name_length+1, prop_hash)) {
prop_name_length 4416 Zend/zend_compile.c 	int   prop_name_length;
prop_name_length 4440 Zend/zend_compile.c 				prop_name_length = property_info->name_length;
prop_name_length 4444 Zend/zend_compile.c 											&class_name_unused, &prop_name, &prop_name_length);
prop_name_length 4445 Zend/zend_compile.c 				prop_hash = zend_get_hash_value(prop_name, prop_name_length + 1);
prop_name_length 4449 Zend/zend_compile.c 			if (zend_hash_quick_find(&ce->properties_info, prop_name, prop_name_length+1, prop_hash, (void **) &coliding_prop) == SUCCESS) {
prop_name_length 4451 Zend/zend_compile.c 					zend_hash_quick_del(&ce->properties_info, prop_name, prop_name_length+1, prop_hash);
prop_name_length 4476 Zend/zend_compile.c 								find_first_definition(ce, i, prop_name, prop_name_length, prop_hash, coliding_prop->ce)->name,
prop_name_length 4483 Zend/zend_compile.c 								find_first_definition(ce, i, prop_name, prop_name_length, prop_hash, coliding_prop->ce)->name,
prop_name_length 4501 Zend/zend_compile.c 			zend_declare_property_ex(ce, prop_name, prop_name_length,
prop_name_length 5378 Zend/zend_compile.c 	int prop_name_length;
prop_name_length 5380 Zend/zend_compile.c 	prop_name_length = 1 + src1_length + 1 + src2_length;
prop_name_length 5381 Zend/zend_compile.c 	prop_name = pemalloc(prop_name_length + 1, internal);
prop_name_length 5387 Zend/zend_compile.c 	*dest_length = prop_name_length;
prop_name_length  672 ext/standard/var.c 					int prop_name_length;
prop_name_length  675 ext/standard/var.c 						zend_mangle_property_name(&priv_name, &prop_name_length, ce->name, ce->name_length, Z_STRVAL_PP(name), Z_STRLEN_PP(name), ce->type & ZEND_INTERNAL_CLASS);
prop_name_length  676 ext/standard/var.c 						if (zend_hash_find(propers, priv_name, prop_name_length + 1, (void *) &d) == SUCCESS) {
prop_name_length  677 ext/standard/var.c 							php_var_serialize_string(buf, priv_name, prop_name_length);
prop_name_length  683 ext/standard/var.c 						zend_mangle_property_name(&prot_name, &prop_name_length, "*", 1, Z_STRVAL_PP(name), Z_STRLEN_PP(name), ce->type & ZEND_INTERNAL_CLASS);
prop_name_length  684 ext/standard/var.c 						if (zend_hash_find(propers, prot_name, prop_name_length + 1, (void *) &d) == SUCCESS) {
prop_name_length  685 ext/standard/var.c 							php_var_serialize_string(buf, prot_name, prop_name_length);