Home
last modified time | relevance | path

Searched refs:cxx_pretty_printer (Results 1 – 7 of 7) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dcxx-pretty-print.h32 struct cxx_pretty_printer : c_pretty_printer struct
34 cxx_pretty_printer ();
86 void pp_cxx_colon_colon (cxx_pretty_printer *);
87 void pp_cxx_separate_with (cxx_pretty_printer *, int);
94 void pp_cxx_userdef_literal (cxx_pretty_printer *, tree);
95 void pp_cxx_requires_clause (cxx_pretty_printer *, tree);
96 void pp_cxx_requires_expr (cxx_pretty_printer *, tree);
103 void pp_cxx_type_constraint (cxx_pretty_printer *, tree);
108 void pp_cxx_conjunction (cxx_pretty_printer *, tree);
109 void pp_cxx_disjunction (cxx_pretty_printer *, tree);
[all …]
H A Dcxx-pretty-print.c64 pp_cxx_colon_colon (cxx_pretty_printer *pp) in pp_cxx_colon_colon()
299 cxx_pretty_printer::constant (tree t) in constant()
333 cxx_pretty_printer::id_expression (tree t) in id_expression()
390 cxx_pretty_printer::primary_expression (tree t) in primary_expression()
753 cxx_pretty_printer::unary_expression (tree t) in unary_expression()
1025 cxx_pretty_printer::expression (tree t) in expression()
1627 cxx_pretty_printer::declarator (tree t) in declarator()
1764 cxx_pretty_printer::type_id (tree t) in type_id()
1865 cxx_pretty_printer::statement (tree t) in statement()
2309 cxx_pretty_printer::declaration (tree t) in declaration()
[all …]
H A Derror.c43 static cxx_pretty_printer actual_pretty_printer;
63 static void dump_type (cxx_pretty_printer *, tree, int);
66 static void dump_decl (cxx_pretty_printer *, tree, int);
69 static void dump_expr (cxx_pretty_printer *, tree, int);
158 cxx_pretty_printer *pp = XNEW (cxx_pretty_printer); in cxx_initialize_diagnostics()
159 context->printer = new (pp) cxx_pretty_printer (); in cxx_initialize_diagnostics()
427 dump_type (cxx_pretty_printer *pp, tree t, int flags) in dump_type()
989 dump_global_iord (cxx_pretty_printer *pp, tree t) in dump_global_iord()
1081 dump_decl (cxx_pretty_printer *pp, tree t, int flags) in dump_decl()
1513 dump_substitution (cxx_pretty_printer *pp, in dump_substitution()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Dcxx-pretty-print.h42 } cxx_pretty_printer; typedef
66 void pp_cxx_pretty_printer_init (cxx_pretty_printer *);
67 void pp_cxx_begin_template_argument_list (cxx_pretty_printer *);
68 void pp_cxx_end_template_argument_list (cxx_pretty_printer *);
69 void pp_cxx_colon_colon (cxx_pretty_printer *);
70 void pp_cxx_separate_with (cxx_pretty_printer *, int);
72 void pp_cxx_declaration (cxx_pretty_printer *, tree);
74 void pp_cxx_trait_expression (cxx_pretty_printer *, tree);
75 void pp_cxx_va_arg_expression (cxx_pretty_printer *, tree);
76 void pp_cxx_offsetof_expression (cxx_pretty_printer *, tree);
[all …]
H A Dcxx-pretty-print.c43 static void pp_cxx_type_id (cxx_pretty_printer *, tree);
77 pp_cxx_colon_colon (cxx_pretty_printer *pp) in pp_cxx_colon_colon()
96 pp_cxx_separate_with (cxx_pretty_printer *pp, int c) in pp_cxx_separate_with()
129 pp_cxx_template_id (cxx_pretty_printer *pp, tree t) in pp_cxx_template_id()
147 pp_cxx_unqualified_id (cxx_pretty_printer *pp, tree t) in pp_cxx_unqualified_id()
276 pp_cxx_qualified_id (cxx_pretty_printer *pp, tree t) in pp_cxx_qualified_id()
326 pp_cxx_constant (cxx_pretty_printer *pp, tree t) in pp_cxx_constant()
1031 pp_cxx_expression (cxx_pretty_printer *pp, tree t) in pp_cxx_expression()
1570 pp_cxx_declarator (cxx_pretty_printer *pp, tree t) in pp_cxx_declarator()
1704 pp_cxx_type_id (cxx_pretty_printer *pp, tree t) in pp_cxx_type_id()
[all …]
H A Dcp-objcp-common.c136 cxx_pretty_printer *pp; in cxx_initialize_diagnostics()
141 pp = XNEW (cxx_pretty_printer); in cxx_initialize_diagnostics()
H A Derror.c44 static cxx_pretty_printer scratch_pretty_printer;