Lines Matching refs:style

105    source code version of a formal parameter list (of some given style) for
107 a pair of surrounding parens) as a string. Note that if the style
112 gen_formal_list_for_type (fntype, style)
114 formals_style style;
119 if (style != ansi)
139 /* If we got to here, then we are trying to generate an ANSI style formal
142 New style prototyped ANSI formal parameter lists should in theory always
157 K&R empty parameter lists and new-style prototyped parameter lists
212 /* Generate a parameter list for a function definition (in some given style).
232 gen_formal_list_for_func_def (fndecl, style)
234 formals_style style;
244 if (*formal_list && ((style == ansi) || (style == k_and_r_names)))
246 this_formal = gen_decl (formal_decl, 0, style);
247 if (style == k_and_r_decls)
253 if (style == ansi)
260 if ((style == ansi) || (style == k_and_r_names))
307 gen_type (ret_val, t, style)
310 formals_style style;
332 ret_val = gen_type (ret_val, TREE_TYPE (t), style);
339 TREE_TYPE (t), style);
342 TREE_TYPE (t), style);
349 TREE_TYPE (t), style);
355 gen_formal_list_for_type (t, style),
357 TREE_TYPE (t), style);
471 (using some particular style for function types).
481 gen_decl (decl, is_func_definition, style)
484 formals_style style;
497 if (style == k_and_r_names)
522 is added to the string we are building. Note that the ANSI-style formal
538 ret_val = gen_type (ret_val, TREE_TYPE (TREE_TYPE (decl)), style);
541 ret_val = gen_type (ret_val, TREE_TYPE (decl), style);
593 out an old-style (i.e. K&R) function header, just in case the user