Searched refs:template_args (Results 1 – 11 of 11) sorted by relevance
| /freebsd-12-stable/contrib/libstdc++/scripts/ |
| D | gen_includers.pl | 8 $template_args = "_T1"; 30 $template_args_shifted = $template_args; 35 $template_args .= ", _T$num_args"; 60 print "#define _GLIBCXX_TEMPLATE_ARGS $template_args\n"; 123 print "# define _GLIBCXX_TUPLE_ALL_TEMPLATE_ARGS $template_args\n";
|
| D | gen_includers2.pl | 7 $template_args = "_U1"; 13 $template_args .= ", _U$num_args"; 19 print "#define _GLIBCXX_BIND_TEMPLATE_ARGS $template_args\n";
|
| D | gen_bind_includers.pl | 7 $template_args = "_U1"; 13 $template_args .= ", _U$num_args"; 19 print "#define _GLIBCXX_BIND_TEMPLATE_ARGS $template_args\n";
|
| /freebsd-12-stable/contrib/googletest/googlemock/scripts/generator/cpp/ |
| D | gmock_class.py | 73 template_args = [arg.name for arg in node.return_type.templated_types] 74 if template_args: 75 return_type += '<' + ', '.join(template_args) + '>' 76 if len(template_args) > 1: 149 template_args = ['T%d' % n for n in range(template_arg_count)] 150 template_decls = ['typename ' + arg for arg in template_args] 152 parent_name += '<' + ', '.join(template_args) + '>'
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBType.i | 872 template_args = [] 874 template_args.append(self.GetTemplateArgumentType(i)) 875 return template_args 888 …template_args = property(template_arg_array, None, doc='''A read only property that returns a list…
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | gdbtypes.h | 694 *template_args; member 788 #define TYPE_TEMPLATE_ARGS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->template_args 852 #define TYPE_TEMPLATE_ARG(thistype, n) TYPE_CPLUS_SPECIFIC(thistype)->template_args[n]
|
| /freebsd-12-stable/contrib/gcc/cp/ |
| D | mangle.c | 2105 tree template_args; in write_expression() local 2113 template_args = TREE_OPERAND (member, 1); in write_expression() 2117 template_args = NULL_TREE; in write_expression() 2154 if (template_args) in write_expression() 2155 write_template_args (template_args); in write_expression()
|
| D | error.c | 1005 tree template_args = NULL_TREE; in dump_function_decl() local 1017 template_args = DECL_TI_ARGS (t); in dump_function_decl() 1082 if (template_parms != NULL_TREE && template_args != NULL_TREE) in dump_function_decl() 1088 dump_template_bindings (template_parms, template_args); in dump_function_decl()
|
| D | pt.c | 7862 tree template_args = 0; in tsubst_baselink() local 7879 template_args = TREE_OPERAND (fns, 1); in tsubst_baselink() 7881 if (template_args) in tsubst_baselink() 7882 template_args = tsubst_template_args (template_args, args, in tsubst_baselink() 7902 template_args); in tsubst_baselink() 7929 tree template_args; in tsubst_qualified_id() local 7938 template_args = TREE_OPERAND (name, 1); in tsubst_qualified_id() 7939 if (template_args) in tsubst_qualified_id() 7940 template_args = tsubst_template_args (template_args, args, in tsubst_qualified_id() 7947 template_args = NULL_TREE; in tsubst_qualified_id() [all …]
|
| D | typeck.c | 2180 tree template_args = NULL_TREE; in finish_class_member_access_expr() local 2186 template_args = TREE_OPERAND (name, 1); in finish_class_member_access_expr() 2253 template = lookup_template_function (template, template_args); in finish_class_member_access_expr()
|
| D | ChangeLog-2000 | 1995 (G): Remove template_args.
|