exclude_table    1179 Zend/zend_inheritance.c static int zend_traits_copy_functions(zend_string *fnname, zend_function *fn, zend_class_entry *ce, HashTable **overriden, HashTable *exclude_table) /* {{{ */
exclude_table    1216 Zend/zend_inheritance.c 	if (exclude_table == NULL || zend_hash_find(exclude_table, fnname) == NULL) {
exclude_table    1366 Zend/zend_inheritance.c static void zend_traits_compile_exclude_table(HashTable* exclude_table, zend_trait_precedence **precedences, zend_class_entry *trait) /* {{{ */
exclude_table    1380 Zend/zend_inheritance.c 					if (zend_hash_add_empty_element(exclude_table, lcname) == NULL) {
exclude_table    1403 Zend/zend_inheritance.c 			HashTable exclude_table;
exclude_table    1407 Zend/zend_inheritance.c 			zend_hash_init_ex(&exclude_table, 8, NULL, NULL, 0, 0);
exclude_table    1411 Zend/zend_inheritance.c 			zend_traits_compile_exclude_table(&exclude_table, precedences, ce->traits[i]);
exclude_table    1415 Zend/zend_inheritance.c 				zend_traits_copy_functions(key, fn, ce, &overriden, &exclude_table);
exclude_table    1418 Zend/zend_inheritance.c 			zend_hash_destroy(&exclude_table);