Home
last modified time | relevance | path

Searched refs:template_args (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBType.i899 template_args = []
901 template_args.append(self.GetTemplateArgumentType(i))
902 return template_args
915template_args = property(template_arg_array, None, doc='''A read only property that returns a list…
/openbsd-src/gnu/llvm/llvm/utils/
H A DlldbDataFormatters.py286 ptr_type_name = self.template_args[self.active_type_tag]
293 self.template_args = parse_template_parameters(self.valobj.GetType().name)
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dgdbtypes.h718 *template_args; member
812 #define TYPE_TEMPLATE_ARGS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->template_args
876 #define TYPE_TEMPLATE_ARG(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->template_args[n]
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dmangle.c1968 tree template_args; local
1976 template_args = TREE_OPERAND (member, 1);
1982 template_args = NULL_TREE;
2019 if (template_args)
2020 write_template_args (template_args);
H A Derror.c1108 tree template_args = NULL_TREE; local
1120 template_args = DECL_TI_ARGS (t);
1182 if (template_parms != NULL_TREE && template_args != NULL_TREE)
1185 dump_template_bindings (template_parms, template_args);
H A Dcall.c474 tree template_args = NULL_TREE; local
550 template_args = TREE_OPERAND (name, 1);
583 template_args);
2790 tree template_args = NULL_TREE; in resolve_scoped_fn_name() local
2795 template_args = TREE_OPERAND (name, 1); in resolve_scoped_fn_name()
2844 fns = build_nt (TEMPLATE_ID_EXPR, fns, template_args); in resolve_scoped_fn_name()
H A Ddecl2.c3557 tree template_args; in build_call_from_tree() local
3573 template_args = TREE_OPERAND (fn, 1); in build_call_from_tree()
3579 template_args = NULL_TREE; in build_call_from_tree()
3602 template_args); in build_call_from_tree()
H A Dtypeck.c2138 tree template_args = NULL_TREE; in finish_class_member_access_expr() local
2143 template_args = TREE_OPERAND (name, 1); in finish_class_member_access_expr()
2241 template_args); in finish_class_member_access_expr()
H A DChangeLog11867 (G): Remove template_args.
/openbsd-src/gnu/gcc/gcc/cp/
H A Dmangle.c2084 tree template_args; in write_expression() local
2092 template_args = TREE_OPERAND (member, 1); in write_expression()
2096 template_args = NULL_TREE; in write_expression()
2133 if (template_args) in write_expression()
2134 write_template_args (template_args); in write_expression()
H A Derror.c992 tree template_args = NULL_TREE; in dump_function_decl() local
1004 template_args = DECL_TI_ARGS (t); in dump_function_decl()
1069 if (template_parms != NULL_TREE && template_args != NULL_TREE) in dump_function_decl()
1075 dump_template_bindings (template_parms, template_args); in dump_function_decl()
H A Dpt.c7848 tree template_args = 0; in tsubst_baselink() local
7865 template_args = TREE_OPERAND (fns, 1); in tsubst_baselink()
7867 if (template_args) in tsubst_baselink()
7868 template_args = tsubst_template_args (template_args, args, in tsubst_baselink()
7888 template_args); in tsubst_baselink()
7915 tree template_args; in tsubst_qualified_id() local
7924 template_args = TREE_OPERAND (name, 1); in tsubst_qualified_id()
7925 if (template_args) in tsubst_qualified_id()
7926 template_args = tsubst_template_args (template_args, args, in tsubst_qualified_id()
7933 template_args = NULL_TREE; in tsubst_qualified_id()
[all …]
H A Dtypeck.c2142 tree template_args = NULL_TREE; in finish_class_member_access_expr() local
2148 template_args = TREE_OPERAND (name, 1); in finish_class_member_access_expr()
2215 template = lookup_template_function (template, template_args); in finish_class_member_access_expr()
H A DChangeLog-20001995 (G): Remove template_args.