existing_fn      4024 Zend/zend_compile.c 	zend_function *existing_fn = NULL;
existing_fn      4027 Zend/zend_compile.c 	if (zend_hash_quick_find(&ce->function_table, arKey, nKeyLength, h, (void**) &existing_fn) == SUCCESS) {
existing_fn      4028 Zend/zend_compile.c 		if (existing_fn->common.scope == ce) {
existing_fn      4032 Zend/zend_compile.c 				if (zend_hash_quick_find(*overriden, arKey, nKeyLength, h, (void**) &existing_fn) == SUCCESS) {
existing_fn      4033 Zend/zend_compile.c 					if (existing_fn->common.fn_flags & ZEND_ACC_ABSTRACT) {
existing_fn      4035 Zend/zend_compile.c 						if (!zend_traits_method_compatibility_check(fn, existing_fn TSRMLS_CC)) {
existing_fn      4038 Zend/zend_compile.c 								zend_get_function_declaration(existing_fn TSRMLS_CC));
existing_fn      4042 Zend/zend_compile.c 						if (!zend_traits_method_compatibility_check(existing_fn, fn TSRMLS_CC)) {
existing_fn      4045 Zend/zend_compile.c 								zend_get_function_declaration(existing_fn TSRMLS_CC));
existing_fn      4056 Zend/zend_compile.c 		} else if (existing_fn->common.fn_flags & ZEND_ACC_ABSTRACT &&
existing_fn      4057 Zend/zend_compile.c 				(existing_fn->common.scope->ce_flags & ZEND_ACC_INTERFACE) == 0) {
existing_fn      4059 Zend/zend_compile.c 			if (!zend_traits_method_compatibility_check(fn, existing_fn TSRMLS_CC)) {
existing_fn      4062 Zend/zend_compile.c 					zend_get_function_declaration(existing_fn TSRMLS_CC));
existing_fn      4066 Zend/zend_compile.c 			if (!zend_traits_method_compatibility_check(existing_fn, fn TSRMLS_CC)) {
existing_fn      4069 Zend/zend_compile.c 					zend_get_function_declaration(existing_fn TSRMLS_CC));
existing_fn      4072 Zend/zend_compile.c 		} else if ((existing_fn->common.scope->ce_flags & ZEND_ACC_TRAIT) == ZEND_ACC_TRAIT) {
existing_fn      4081 Zend/zend_compile.c 				existing_fn->common.scope->name, existing_fn->common.function_name);
existing_fn      4086 Zend/zend_compile.c 			do_inheritance_check_on_method(fn, existing_fn TSRMLS_CC);