Home | History | Annotate | Download | only in c-family

Lines Matching defs:c_pretty_printer

55 static void pp_c_char (c_pretty_printer *, int);
58 static void pp_c_initializer_list (c_pretty_printer *, tree);
59 static void pp_c_brace_enclosed_initializer_list (c_pretty_printer *, tree);
61 static void pp_c_additive_expression (c_pretty_printer *, tree);
62 static void pp_c_shift_expression (c_pretty_printer *, tree);
63 static void pp_c_relational_expression (c_pretty_printer *, tree);
64 static void pp_c_equality_expression (c_pretty_printer *, tree);
65 static void pp_c_and_expression (c_pretty_printer *, tree);
66 static void pp_c_exclusive_or_expression (c_pretty_printer *, tree);
67 static void pp_c_inclusive_or_expression (c_pretty_printer *, tree);
68 static void pp_c_logical_and_expression (c_pretty_printer *, tree);
77 pp_c_whitespace (c_pretty_printer *pp)
84 pp_c_left_paren (c_pretty_printer *pp)
91 pp_c_right_paren (c_pretty_printer *pp)
98 pp_c_left_brace (c_pretty_printer *pp)
105 pp_c_right_brace (c_pretty_printer *pp)
112 pp_c_left_bracket (c_pretty_printer *pp)
119 pp_c_right_bracket (c_pretty_printer *pp)
126 pp_c_dot (c_pretty_printer *pp)
133 pp_c_ampersand (c_pretty_printer *pp)
140 pp_c_star (c_pretty_printer *pp)
147 pp_c_arrow (c_pretty_printer *pp)
154 pp_c_semicolon (c_pretty_printer *pp)
161 pp_c_complement (c_pretty_printer *pp)
168 pp_c_exclamation (c_pretty_printer *pp)
177 pp_c_cv_qualifiers (c_pretty_printer *pp, int qualifiers, bool func_type)
204 pp_c_type_cast (c_pretty_printer *pp, tree t)
215 pp_c_space_for_pointer_operator (c_pretty_printer *pp, tree t)
250 pp_c_type_qualifier_list (c_pretty_printer *pp, tree t)
279 pp_c_pointer (c_pretty_printer *pp, tree t)
339 c_pretty_printer::simple_type_specifier (tree t)
451 pp_c_specifier_qualifier_list (c_pretty_printer *pp, tree t)
530 pp_c_parameter_type_list (c_pretty_printer *pp, tree t)
566 c_pretty_printer::abstract_declarator (tree t)
586 c_pretty_printer::direct_abstract_declarator (tree t)
698 c_pretty_printer::type_id (tree t)
712 c_pretty_printer::storage_class_specifier (tree t)
729 c_pretty_printer::function_specifier (tree t)
742 c_pretty_printer::declaration_specifiers (tree t)
760 c_pretty_printer::direct_declarator (tree t)
814 c_pretty_printer::declarator (tree t)
847 c_pretty_printer::declaration (tree t)
856 pp_c_attributes (c_pretty_printer *pp, tree attributes)
881 pp_c_attributes_display (c_pretty_printer *pp, tree a)
926 pp_c_function_definition (c_pretty_printer *pp, tree t)
956 pp_c_char (c_pretty_printer *pp, int c)
975 pp_c_string_literal (c_pretty_printer *pp, tree s)
989 pp_c_void_constant (c_pretty_printer *pp)
998 pp_c_integer_constant (c_pretty_printer *pp, tree i)
1021 pp_c_character_constant (c_pretty_printer *pp, tree c)
1031 pp_c_bool_constant (c_pretty_printer *pp, tree b)
1062 pp_c_enumeration_constant (c_pretty_printer *pp, tree e)
1087 pp_c_floating_constant (c_pretty_printer *pp, tree r)
1129 pp_c_fixed_constant (c_pretty_printer *pp, tree r)
1140 pp_c_compound_literal (c_pretty_printer *pp, tree e)
1164 pp_c_complex_expr (c_pretty_printer *pp, tree e)
1209 c_pretty_printer::constant (tree e)
1262 pp_c_ws_string (c_pretty_printer *pp, const char *str)
1270 c_pretty_printer::translate_string (const char *gmsgid)
1283 pp_c_identifier (c_pretty_printer *pp, const char *id)
1298 c_pretty_printer::primary_expression (tree e)
1403 c_pretty_printer::initializer (tree e)
1416 pp_c_init_declarator (c_pretty_printer *pp, tree t)
1460 pp_c_initializer_list (c_pretty_printer *pp, tree e)
1540 pp_c_brace_enclosed_initializer_list (c_pretty_printer *pp, tree l)
1555 c_pretty_printer::id_expression (tree t)
1591 c_pretty_printer::postfix_expression (tree e)
1793 pp_c_expression_list (c_pretty_printer *pp, tree e)
1806 pp_c_constructor_elts (c_pretty_printer *pp, vec<constructor_elt, va_gc> *v)
1823 pp_c_call_argument_list (c_pretty_printer *pp, tree t)
1956 print_mem_ref (c_pretty_printer *pp, tree e)
2152 c_pretty_printer::unary_expression (tree e)
2267 pp_c_cast_expression (c_pretty_printer *pp, tree e)
2292 c_pretty_printer::multiplicative_expression (tree e)
2326 pp_c_additive_expression (c_pretty_printer *pp, tree e)
2366 pp_c_shift_expression (c_pretty_printer *pp, tree e)
2397 pp_c_relational_expression (c_pretty_printer *pp, tree e)
2432 pp_c_equality_expression (c_pretty_printer *pp, tree e)
2457 pp_c_and_expression (c_pretty_printer *pp, tree e)
2476 pp_c_exclusive_or_expression (c_pretty_printer *pp, tree e)
2499 pp_c_inclusive_or_expression (c_pretty_printer *pp, tree e)
2518 pp_c_logical_and_expression (c_pretty_printer *pp, tree e)
2538 pp_c_logical_or_expression (c_pretty_printer *pp, tree e)
2558 c_pretty_printer::conditional_expression (tree e)
2585 c_pretty_printer::assignment_expression (tree e)
2611 c_pretty_printer::expression (tree e)
2809 c_pretty_printer::statement (tree t)
2906 c_pretty_printer::c_pretty_printer ()
2916 /* c_pretty_printer's implementation of pretty_printer::clone vfunc. */
2919 c_pretty_printer::clone () const
2921 return new c_pretty_printer (*this);
2929 c_pretty_printer pp;
2950 pp_c_tree_decl_identifier (c_pretty_printer *pp, tree t)
2975 /* Verify that EXPR printed by c_pretty_printer is EXPECTED, using
2982 c_pretty_printer pp;