Searched refs:DECL_TEMPLATE_PARMS (Results 1 – 22 of 22) sorted by relevance
/openbsd/gnu/usr.bin/gcc/gcc/cp/ |
H A D | pt.c | 523 && (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) > 549 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) > 882 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)), 2068 DECL_TEMPLATE_PARMS (decl) 2069 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)); 2273 DECL_TEMPLATE_PARMS (tmpl) = parms; 2867 parms = DECL_TEMPLATE_PARMS (tmpl); 4224 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl); 4267 t = DECL_TEMPLATE_PARMS (template); 6060 DECL_TEMPLATE_PARMS (r) [all …]
|
H A D | dump.c | 358 dump_child ("prms", DECL_TEMPLATE_PARMS (t));
|
H A D | semantics.c | 1630 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms; 1635 my_friendly_assert (DECL_TEMPLATE_PARMS (tmpl), 20010110);
|
H A D | error.c | 1037 tree orig_parms = DECL_TEMPLATE_PARMS (t); 1124 template_parms = DECL_TEMPLATE_PARMS (tmpl); 1360 tree parms = DECL_TEMPLATE_PARMS (tpl);
|
H A D | cp-tree.h | 2789 #define DECL_TEMPLATE_PARMS(NODE) DECL_ARGUMENTS (NODE) macro 2791 INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (NODE))
|
H A D | decl.c | 3215 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl), 3216 DECL_TEMPLATE_PARMS (olddecl))) 3510 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl), 3511 DECL_TEMPLATE_PARMS (olddecl))
|
H A D | typeck.c | 979 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)), 980 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2))))
|
H A D | class.c | 973 && !comp_template_parms (DECL_TEMPLATE_PARMS (fn), 974 DECL_TEMPLATE_PARMS (method)))
|
H A D | ChangeLog | 5854 (DECL_TEMPLATE_PARMS): Likewise.
|
H A D | ChangeLog.2 | 12454 the DECL_TEMPLATE_PARMS field.
|
/openbsd/gnu/gcc/gcc/cp/ |
H A D | pt.c | 1071 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend), in is_specialization_of_friend() 1074 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)), in is_specialization_of_friend() 2371 DECL_TEMPLATE_PARMS (decl) in reduce_template_parm_level() 2372 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)); in reduce_template_parm_level() 2596 DECL_TEMPLATE_PARMS (tmpl) = parms; in build_template_decl() 3232 parms = DECL_TEMPLATE_PARMS (tmpl); in push_template_decl_real() 4630 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl); in lookup_template_class() 4673 t = DECL_TEMPLATE_PARMS (template); in lookup_template_class() 6447 DECL_TEMPLATE_PARMS (r) in tsubst_decl() 6534 DECL_TEMPLATE_PARMS (r) in tsubst_decl() [all …]
|
H A D | dump.c | 358 dump_child ("prms", DECL_TEMPLATE_PARMS (t)); in cp_dump_tree()
|
H A D | error.c | 920 tree orig_parms = DECL_TEMPLATE_PARMS (t); in dump_template_decl() 1008 template_parms = DECL_TEMPLATE_PARMS (tmpl); in dump_function_decl() 1237 tree parms = DECL_TEMPLATE_PARMS (tpl); in dump_template_parms()
|
H A D | decl2.c | 575 DECL_TEMPLATE_PARMS (function))); in check_classfn() 576 template_parms = DECL_TEMPLATE_PARMS (function); in check_classfn() 624 DECL_TEMPLATE_PARMS (fndecl))) in check_classfn()
|
H A D | semantics.c | 2107 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms; in finish_template_template_parm() 2112 gcc_assert (DECL_TEMPLATE_PARMS (tmpl)); in finish_template_template_parm()
|
H A D | decl.c | 982 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl), in decls_match() 983 DECL_TEMPLATE_PARMS (olddecl))) in decls_match() 1349 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl), in duplicate_decls() 1350 DECL_TEMPLATE_PARMS (olddecl)) in duplicate_decls() 2937 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list)) in make_unbound_class_template() 2964 DECL_TEMPLATE_PARMS (d) = parm_list; in make_unbound_class_template()
|
H A D | cxx-pretty-print.c | 1867 for (level = DECL_TEMPLATE_PARMS (tmpl); level; level = TREE_CHAIN (level)) in pp_cxx_template_declaration()
|
H A D | cp-tree.h | 2728 #define DECL_TEMPLATE_PARMS(NODE) DECL_NON_COMMON_CHECK (NODE)->decl_non_common.arguments macro 2730 INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (NODE))
|
H A D | typeck.c | 1010 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)), in comptypes() 1011 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2)))) in comptypes()
|
H A D | class.c | 1038 || !comp_template_parms (DECL_TEMPLATE_PARMS (fn), in add_method() 1039 DECL_TEMPLATE_PARMS (method)))) in add_method()
|
H A D | ChangeLog-2002 | 4451 (DECL_TEMPLATE_PARMS): Likewise.
|
H A D | ChangeLog-1998 | 5666 the DECL_TEMPLATE_PARMS field.
|