| /NextBSD/contrib/gcc/cp/ |
| HD | decl2.c | 177 tree basetype, arg_types, parms, parm, fntype; in maybe_retrofit_in_chrg() local 194 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn)); in maybe_retrofit_in_chrg() 195 basetype = TREE_TYPE (TREE_VALUE (arg_types)); in maybe_retrofit_in_chrg() 196 arg_types = TREE_CHAIN (arg_types); in maybe_retrofit_in_chrg() 211 arg_types = hash_tree_chain (vtt_parm_type, arg_types); in maybe_retrofit_in_chrg() 220 arg_types = hash_tree_chain (integer_type_node, arg_types); in maybe_retrofit_in_chrg() 227 arg_types); in maybe_retrofit_in_chrg() 506 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method)); in check_java_method() local 516 arg_types = TREE_CHAIN (arg_types); in check_java_method() 518 arg_types = TREE_CHAIN (arg_types); in check_java_method() [all …]
|
| HD | decl.c | 5925 tree arg_types; in get_atexit_node() local 5946 arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node); in get_atexit_node() 5947 fn_type = build_function_type (void_type_node, arg_types); in get_atexit_node() 5950 arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node); in get_atexit_node() 5953 arg_types = tree_cons (NULL_TREE, fn_ptr_type, arg_types); in get_atexit_node() 5954 arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types); in get_atexit_node() 5958 arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types); in get_atexit_node() 5959 arg_types = tree_cons (NULL_TREE, fn_ptr_type, arg_types); in get_atexit_node() 5962 fn_type = build_function_type (integer_type_node, arg_types); in get_atexit_node() 5979 arg_types = tree_cons (NULL_TREE, fn_ptr_type, void_list_node); in get_atexit_node() [all …]
|
| HD | call.c | 2280 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn); in add_template_candidate_real() local 2281 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)), in add_template_candidate_real() 2935 tree arg_types; in build_operator_new_call() local 2937 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn)); in build_operator_new_call() 2939 arg_types = TREE_CHAIN (arg_types); in build_operator_new_call() 2941 if (arg_types in build_operator_new_call() 2942 && TREE_CHAIN (arg_types) == void_list_node in build_operator_new_call() 2943 && same_type_p (TREE_VALUE (arg_types), in build_operator_new_call()
|
| HD | pt.c | 7057 tsubst_arg_types (tree arg_types, in tsubst_arg_types() argument 7067 if (!arg_types || arg_types == void_list_node) in tsubst_arg_types() 7068 return arg_types; in tsubst_arg_types() 7070 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types), in tsubst_arg_types() 7075 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl); in tsubst_arg_types() 7096 default_arg = TREE_PURPOSE (arg_types); in tsubst_arg_types() 7137 tree arg_types; in tsubst_function_type() local 7165 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, in tsubst_function_type() 7167 if (arg_types == error_mark_node) in tsubst_function_type() 7172 fntype = build_function_type (return_type, arg_types); in tsubst_function_type() [all …]
|
| /NextBSD/contrib/binutils/binutils/ |
| HD | debug.c | 194 debug_type *arg_types; member 256 debug_type *arg_types; member 1397 debug_type *arg_types, bfd_boolean varargs) in debug_make_function_type() argument 1414 f->arg_types = arg_types; in debug_make_function_type() 1573 debug_type domain_type, debug_type *arg_types, in debug_make_method_type() argument 1592 m->arg_types = arg_types; in debug_make_method_type() 2182 return type->u.kfunction->arg_types; in debug_get_parameter_types() 2185 return type->u.kmethod->arg_types; in debug_get_parameter_types() 2563 if (type->u.kfunction->arg_types == NULL) in debug_write_type() 2567 for (is = 0; type->u.kfunction->arg_types[is] != NULL; is++) in debug_write_type() [all …]
|
| HD | prdbg.c | 693 char **arg_types; in pr_function_type() local 703 arg_types = NULL; in pr_function_type() 710 arg_types = (char **) xmalloc (argcount * sizeof *arg_types); in pr_function_type() 715 arg_types[i] = pop_type (info); in pr_function_type() 716 if (arg_types[i] == NULL) in pr_function_type() 718 len += strlen (arg_types[i]) + 2; in pr_function_type() 739 strcat (s, arg_types[i]); in pr_function_type() 748 free (arg_types); in pr_function_type() 898 char **arg_types; in pr_method_type() local 924 arg_types = NULL; in pr_method_type() [all …]
|
| HD | ieee.c | 1912 debug_type *arg_types; in parse_ieee_ty() local 1928 arg_types = NULL; in parse_ieee_ty() 1935 arg_types = ((debug_type *) in parse_ieee_ty() 1936 xmalloc ((nargs + 1) * sizeof *arg_types)); in parse_ieee_ty() 1938 if (! ieee_read_type_index (info, pp, arg_types + i)) in parse_ieee_ty() 1948 last = arg_types[nargs - 1]; in parse_ieee_ty() 1965 if (debug_get_type_kind (dhandle, arg_types[i]) in parse_ieee_ty() 1974 arg_slots[i] = arg_types[i]; in parse_ieee_ty() 1975 arg_types[i] = in parse_ieee_ty() 1982 arg_types[nargs] = DEBUG_TYPE_NULL; in parse_ieee_ty() [all …]
|
| HD | ChangeLog-9197 | 1529 * debug.c (struct debug_function_type): Add fields arg_types and 1534 (debug_make_function_type): Add arg_types and varargs parameters.
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | valops.c | 65 static int find_oload_champ_namespace (struct type **arg_types, int nargs, 72 int find_oload_champ_namespace_loop (struct type **arg_types, int nargs, 80 static int find_oload_champ (struct type **arg_types, int nargs, int method, 1924 find_overload_match (struct type **arg_types, int nargs, char *name, int method, in find_overload_match() argument 1970 oload_champ = find_oload_champ (arg_types, nargs, method, num_fns, in find_overload_match() 1990 oload_champ = find_oload_champ_namespace (arg_types, nargs, in find_overload_match() 2072 find_oload_champ_namespace (struct type **arg_types, int nargs, in find_oload_champ_namespace() argument 2080 find_oload_champ_namespace_loop (arg_types, nargs, in find_oload_champ_namespace() 2098 find_oload_champ_namespace_loop (struct type **arg_types, int nargs, in find_oload_champ_namespace_loop() argument 2134 if (find_oload_champ_namespace_loop (arg_types, nargs, in find_oload_champ_namespace_loop() [all …]
|
| HD | eval.c | 400 struct type **arg_types; in evaluate_subexp_standard() local 1128 arg_types = (struct type **) alloca (nargs * (sizeof (struct type *))); in evaluate_subexp_standard() 1130 arg_types[ix - 1] = VALUE_TYPE (argvec[ix]); in evaluate_subexp_standard() 1132 (void) find_overload_match (arg_types, nargs, tstr, in evaluate_subexp_standard() 1183 arg_types = (struct type **) alloca (nargs * (sizeof (struct type *))); in evaluate_subexp_standard() 1185 arg_types[ix - 1] = VALUE_TYPE (argvec[ix]); in evaluate_subexp_standard() 1187 (void) find_overload_match (arg_types, nargs, NULL /* no need for name */ , in evaluate_subexp_standard()
|
| HD | stabsread.c | 1702 } *arg_types = 0; in read_type() local 1710 new->next = arg_types; in read_type() 1711 arg_types = new; in read_type() 1725 if (arg_types in read_type() 1726 && ! arg_types->next in read_type() 1727 && TYPE_CODE (arg_types->type) == TYPE_CODE_VOID) in read_type() 1741 for (t = arg_types, i = num_args - 1; t; t = t->next, i--) in read_type()
|
| HD | value.h | 395 extern int find_overload_match (struct type **arg_types, int nargs,
|
| /NextBSD/contrib/groff/src/preproc/refer/ |
| HD | command.cpp | 638 const char *arg_types; member 762 if (check_args(command_table[i].arg_types, name, argc, argv)) in execute_command()
|
| /NextBSD/contrib/gcc/ |
| HD | c-decl.c | 4962 tree arg_types; in grokdeclarator() local 4993 arg_types = grokparms (arg_info, really_funcdef); in grokdeclarator() 5017 type = build_function_type (type, arg_types); in grokdeclarator() 5147 tree arg_types; in grokdeclarator() local 5162 arg_types = grokparms (arg_info, false); in grokdeclarator() 5164 type = build_function_type (type, arg_types); in grokdeclarator() 5549 tree arg_types = arg_info->types; in grokparms() local 5558 if (arg_types == 0 && !funcdef_flag && !in_system_header) in grokparms() 5562 if (arg_types == error_mark_node) in grokparms() 5565 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE) in grokparms() [all …]
|
| HD | c-common.c | 6667 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (function)); in sync_resolve_params() local 6674 arg_types = TREE_CHAIN (arg_types); in sync_resolve_params() 6680 while (arg_types != void_list_node) in sync_resolve_params() 6696 val = convert (TREE_VALUE (arg_types), val); in sync_resolve_params() 6699 arg_types = TREE_CHAIN (arg_types); in sync_resolve_params()
|
| HD | tree.c | 5274 build_function_type (tree value_type, tree arg_types) in build_function_type() argument 5288 TYPE_ARG_TYPES (t) = arg_types; in build_function_type() 5292 hashcode = type_hash_list (arg_types, hashcode); in build_function_type()
|
| HD | ChangeLog-2004 | 37449 (grokparms): Return 0 if arg_types is error_mark_node.
|
| /NextBSD/contrib/gdb/gdb/doc/ |
| HD | stabs.texinfo | 2587 :arg_types(int char);
|