Searched refs:push_type (Results 1 – 9 of 9) sorted by relevance
| /NextBSD/contrib/gdb/gdb/ |
| HD | c-exp.y | 728 push_type (tp_space_identifier); 749 { push_type (tp_pointer); $$ = 0; } 751 { push_type (tp_pointer); $$ = $2; } 753 { push_type (tp_reference); $$ = 0; } 755 { push_type (tp_reference); $$ = $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); [all …]
|
| HD | c-exp.c | 2054 push_type (tp_space_identifier); 2060 { push_type (tp_pointer); yyval.voidval = 0; } 2065 { push_type (tp_pointer); yyval.voidval = yyvsp[0].voidval; } 2070 { push_type (tp_reference); yyval.voidval = 0; } 2075 { push_type (tp_reference); yyval.voidval = yyvsp[0].voidval; } 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); [all …]
|
| HD | 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); }
|
| HD | 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); }
|
| HD | 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); }
|
| HD | 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); }
|
| HD | parser-defs.h | 150 extern void push_type (enum type_pieces);
|
| HD | parse.c | 1116 push_type (enum type_pieces tp) in push_type() function
|
| /NextBSD/contrib/binutils/binutils/ |
| HD | prdbg.c | 80 static bfd_boolean push_type (struct pr_handle *, const char *); 334 push_type (struct pr_handle *info, const char *type) in push_type() function 545 return push_type (info, "<undefined>"); in pr_empty_type() 555 return push_type (info, "void"); in pr_void_type() 567 return push_type (info, ab); in pr_int_type() 579 return push_type (info, "float"); in pr_float_type() 581 return push_type (info, "double"); in pr_float_type() 584 return push_type (info, ab); in pr_float_type() 610 return push_type (info, ab); in pr_bool_type() 623 if (! push_type (info, "enum ")) in pr_enum_type() [all …]
|