Searched refs:push_type (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | c-exp.y | 728 push_type (tp_space_identifier); 749 { push_type (tp_pointer); $$ = 0; } 751 { push_type (tp_pointer); $$ = $2; } 764 push_type (tp_array); 769 push_type (tp_array); 774 { push_type (tp_function); } 776 { push_type (tp_function); } 1011 { push_type (tp_const); 1012 push_type (tp_volatile); 1015 { push_type (tp_const); } [all …]
|
| H A D | c-exp.c | 2054 push_type (tp_space_identifier); 2060 { push_type (tp_pointer); yyval.voidval = 0; } 2070 { push_type (tp_reference); yyval.voidval = 0; } 2087 push_type (tp_array); 2095 push_type (tp_array); 2102 { push_type (tp_function); } 2107 { push_type (tp_function); } 2417 { push_type (tp_const); 2418 push_type (tp_volatile); 2424 { push_type (tp_const); } [all …]
|
| H A D | f-exp.y | 547 { push_type (tp_pointer); $$ = 0; } 549 { push_type (tp_pointer); $$ = $2; } 551 { push_type (tp_reference); $$ = 0; } 553 { push_type (tp_reference); $$ = $2; } 560 { push_type (tp_function); } 562 { push_type (tp_function); }
|
| H A D | objc-exp.y | 810 { push_type (tp_pointer); $$ = 0; } 812 { push_type (tp_pointer); $$ = $2; } 814 { push_type (tp_reference); $$ = 0; } 816 { push_type (tp_reference); $$ = $2; } 825 push_type (tp_array); 830 push_type (tp_array); 835 { push_type (tp_function); } 837 { push_type (tp_function); }
|
| H A D | objc-exp.c | 2127 { push_type (tp_pointer); yyval.voidval = 0; } 2132 { push_type (tp_pointer); yyval.voidval = yyvsp[0].voidval; } 2137 { push_type (tp_reference); yyval.voidval = 0; } 2142 { push_type (tp_reference); yyval.voidval = yyvsp[0].voidval; } 2154 push_type (tp_array); 2162 push_type (tp_array); 2169 { push_type (tp_function); } 2174 { push_type (tp_function); }
|
| H A D | f-exp.c | 1669 { push_type (tp_pointer); yyval.voidval = 0; } 1674 { push_type (tp_pointer); yyval.voidval = yyvsp[0].voidval; } 1679 { push_type (tp_reference); yyval.voidval = 0; } 1684 { push_type (tp_reference); yyval.voidval = yyvsp[0].voidval; } 1694 { push_type (tp_function); } 1699 { push_type (tp_function); }
|
| H A D | parser-defs.h | 150 extern void push_type (enum type_pieces);
|
| H A D | parse.c | 1116 push_type (enum type_pieces tp) in push_type() function
|
| /freebsd-12.1/contrib/binutils/binutils/ |
| H A D | prdbg.c | 555 return push_type (info, "void"); in pr_void_type() 567 return push_type (info, ab); in pr_int_type() 584 return push_type (info, ab); in pr_float_type() 610 return push_type (info, ab); in pr_bool_type() 1323 if (! push_type (info, t)) in pr_class_baseclass() 1562 return push_type (info, name); in pr_typedef_type() 1597 if (! push_type (info, t)) in pr_tag_type() 2010 if (! push_type (info, name)) in tg_start_struct_type() 2109 if (! push_type (info, name)) in tg_start_class_type() 2203 if (! push_type (info, t)) in tg_class_baseclass() [all …]
|