Lines Matching defs:style

106    source code version of a formal parameter list (of some given style) for
108 a pair of surrounding parens) as a string. Note that if the style
113 gen_formal_list_for_type (tree fntype, formals_style style)
118 if (style != ansi)
138 /* If we got to here, then we are trying to generate an ANSI style formal
141 New style prototyped ANSI formal parameter lists should in theory always
156 K&R empty parameter lists and new-style prototyped parameter lists
210 /* Generate a parameter list for a function definition (in some given style).
230 gen_formal_list_for_func_def (tree fndecl, formals_style style)
240 if (*formal_list && ((style == ansi) || (style == k_and_r_names)))
242 this_formal = gen_decl (formal_decl, 0, style);
243 if (style == k_and_r_decls)
249 if (style == ansi)
256 if ((style == ansi) || (style == k_and_r_names))
303 gen_type (const char *ret_val, tree t, formals_style style)
325 ret_val = gen_type (ret_val, TREE_TYPE (t), style);
332 TREE_TYPE (t), style);
335 TREE_TYPE (t), style);
342 TREE_TYPE (t), style);
348 gen_formal_list_for_type (t, style),
350 TREE_TYPE (t), style);
464 (using some particular style for function types).
474 gen_decl (tree decl, int is_func_definition, formals_style style)
487 if (style == k_and_r_names)
512 is added to the string we are building. Note that the ANSI-style formal
528 ret_val = gen_type (ret_val, TREE_TYPE (TREE_TYPE (decl)), style);
531 ret_val = gen_type (ret_val, TREE_TYPE (decl), style);
580 out an old-style (i.e. K&R) function header, just in case the user