Home
last modified time | relevance | path

Searched refs:DECL_USE_TEMPLATE (Results 1 – 18 of 18) sorted by relevance

/freebsd-9-stable/contrib/gcc/cp/
Doptimize.c112 DECL_USE_TEMPLATE (clone) = DECL_USE_TEMPLATE (fn); in maybe_clone_body()
Dcp-tree.h2885 #define DECL_USE_TEMPLATE(NODE) (DECL_LANG_SPECIFIC (NODE)->decl_flags.use_template) macro
2897 #define DECL_TEMPLATE_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) & 1)
2901 #define DECL_TEMPLATE_SPECIALIZATION(NODE) (DECL_USE_TEMPLATE (NODE) == 2)
2902 #define SET_DECL_TEMPLATE_SPECIALIZATION(NODE) (DECL_USE_TEMPLATE (NODE) = 2)
2911 #define DECL_IMPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) == 1)
2912 #define SET_DECL_IMPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) = 1)
2918 #define DECL_EXPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) == 3)
2919 #define SET_DECL_EXPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) = 3)
2933 (DECL_TEMPLATE_INFO (DECL) && !DECL_USE_TEMPLATE (DECL))
Dfriend.c512 if (! DECL_USE_TEMPLATE (decl)) in do_friend()
Dmethod.c165 DECL_USE_TEMPLATE (thunk) = 0; in make_thunk()
287 DECL_USE_TEMPLATE (alias) = 0; in make_alias_for()
Dcxx-pretty-print.c1919 else if (DECL_USE_TEMPLATE (t)) in pp_cxx_declaration()
1920 switch (DECL_USE_TEMPLATE (t)) in pp_cxx_declaration()
Derror.c1004 if (DECL_USE_TEMPLATE (t) && DECL_TEMPLATE_INFO (t)) in dump_function_decl()
1195 dump_template_parms (DECL_TEMPLATE_INFO (t), !DECL_USE_TEMPLATE (t), flags); in dump_function_name()
Ddecl.c1418 && !DECL_USE_TEMPLATE (newdecl)) in duplicate_decls()
1420 && !DECL_USE_TEMPLATE (olddecl)))) in duplicate_decls()
1516 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl)) in duplicate_decls()
1821 if (!DECL_USE_TEMPLATE (newdecl)) in duplicate_decls()
1822 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl); in duplicate_decls()
4008 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl)) in start_decl()
10716 && !(DECL_USE_TEMPLATE (decl1) && in start_preparsed_function()
Ddecl2.c553 if (DECL_USE_TEMPLATE (function) in check_classfn()
1682 use_template = DECL_USE_TEMPLATE (decl); in determine_visibility()
Dmangle.c325 && DECL_USE_TEMPLATE (decl) in decl_is_template_id()
Dpt.c977 && !DECL_USE_TEMPLATE (friend)) in is_specialization_of_friend()
5363 DECL_USE_TEMPLATE (new_friend) = 0; in tsubst_friend_function()
5366 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0; in tsubst_friend_function()
5640 DECL_USE_TEMPLATE (tmpl) = 0; in tsubst_friend_class()
6683 DECL_USE_TEMPLATE (r) = 0; in tsubst_decl()
Dname-lookup.c2963 if (friendp && DECL_USE_TEMPLATE (decl)) in set_decl_namespace()
4513 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_USE_TEMPLATE (fn)) in arg_assoc_class()
DChangeLog457 * cp-tree.h (DECL_USE_TEMPLATE): Mention partial specializations.
1569 * method.c (make_thunk): Unset DECL_USE_TEMPLATE and
5516 * decl.c (duplicate_decls): Copy all of DECL_USE_TEMPLATE.
6879 * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
6883 variables that do not have DECL_USE_TEMPLATE.
Dtypeck.c2068 && DECL_USE_TEMPLATE (fn) in check_template_keyword()
DChangeLog-1997736 OLDDECL before we try to do DECL_USE_TEMPLATE.
DChangeLog-19984032 DECL_USE_TEMPLATE.
6245 * decl.c (grokdeclarator): Use DECL_USE_TEMPLATE instead
DChangeLog-20024458 (DECL_USE_TEMPLATE): Whitespace.
DChangeLog-20003102 * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
DChangeLog-19942090 (DECL_USE_TEMPLATE): Parallel macro for FUNCTION and VAR_DECLs.