Home | History | Annotate | Download | only in cp

Lines Matching defs:fn1

3770 equal_functions (tree fn1, tree fn2)
3772 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3774 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3775 return fn1 == fn2;
3776 if (DECL_LOCAL_DECL_P (fn1) || DECL_LOCAL_DECL_P (fn2)
3777 || DECL_EXTERN_C_FUNCTION_P (fn1))
3778 return decls_match (fn1, fn2);
3779 return fn1 == fn2;
11988 tree fn1 = c1->fn;
11990 if (fn1 == fn2)
11992 if (identifier_p (fn1) || identifier_p (fn2))
11996 tree t1 = most_general_template (fn1);
12004 fn1 = DECL_TEMPLATE_RESULT (t1);
12007 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (fn1));
12009 if (DECL_FUNCTION_MEMBER_P (fn1)
12011 && (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn1)
12016 parms1 = skip_artificial_parms_for (fn1, parms1);