Searched refs:pp_identifier (Results 1 – 7 of 7) sorted by relevance
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | c-pretty-print.c | 303 pp_identifier (ppi, "\\n"); 306 pp_identifier (ppi, "\\t"); 309 pp_identifier (ppi, "\\v"); 312 pp_identifier (ppi, "\\b"); 315 pp_identifier (ppi, "\\r"); 318 pp_identifier (ppi, "\\f"); 321 pp_identifier (ppi, "\\a"); 327 pp_identifier (ppi, "\\'"); 945 pp_identifier (ppi, "<="); 947 pp_identifier (ppi, ">="); [all …]
|
H A D | pretty-print.h | 93 #define pp_identifier(PPI, ID) output_add_string (pp_buffer (PPI), ID) macro 94 #define pp_tree_identifier(PPI, T) pp_identifier(PPI, IDENTIFIER_POINTER (T))
|
H A D | c-pretty-print.h | 98 pp_identifier (PPI, ID); \
|
/openbsd/gnu/gcc/gcc/cp/ |
H A D | error.c | 243 pp_identifier (cxx_pp, "<missing>"); in dump_template_bindings() 384 pp_identifier (cxx_pp, "<type error>"); in dump_type() 465 pp_identifier (cxx_pp, "<anonymous>"); in dump_aggr_type() 579 pp_identifier (cxx_pp, "<typeprefixerror>"); in dump_type_prefix() 706 pp_identifier (cxx_pp, "<anonymous>"); in dump_simple_decl() 766 pp_identifier (cxx_pp, "<unnamed>"); in dump_decl() 840 pp_identifier (cxx_pp, "<built-in>"); in dump_decl() 879 pp_identifier (cxx_pp, "<enumerator>"); in dump_decl() 909 pp_identifier (cxx_pp, "<declaration error>"); in dump_decl() 1833 pp_identifier (cxx_pp, "<unparsed>"); in dump_expr() [all …]
|
H A D | cxx-pretty-print.c | 1690 pp_identifier (pp, TREE_CODE (t) == BREAK_STMT ? "break" : "continue"); in pp_cxx_statement()
|
/openbsd/gnu/gcc/gcc/ |
H A D | c-pretty-print.c | 1003 pp_identifier (pp, id); in pp_c_identifier() 1263 pp_identifier (pp, code == POSTINCREMENT_EXPR ? "++" : "--"); in pp_c_postfix_expression() 1460 pp_identifier (pp, code == PREINCREMENT_EXPR ? "++" : "--"); in pp_c_unary_expression() 1596 pp_identifier (pp, code == LSHIFT_EXPR ? "<<" : ">>"); in pp_c_shift_expression() 1630 pp_identifier (pp, "<="); in pp_c_relational_expression() 1632 pp_identifier (pp, ">="); in pp_c_relational_expression() 1658 pp_identifier (pp, code == EQ_EXPR ? "==" : "!="); in pp_c_equality_expression() 1737 pp_identifier (pp, "&&"); in pp_c_logical_and_expression() 1756 pp_identifier (pp, "||"); in pp_c_logical_or_expression()
|
H A D | pretty-print.h | 276 #define pp_identifier(PP, ID) pp_string (PP, ID) macro
|