Home
last modified time | relevance | path

Searched refs:push_type (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/gdb/gdb/
HDc-exp.y728 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 …]
HDc-exp.c2054 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 …]
HDf-exp.y547 { 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); }
HDobjc-exp.y810 { 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); }
HDobjc-exp.c2127 { 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); }
HDf-exp.c1669 { 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); }
HDparser-defs.h150 extern void push_type (enum type_pieces);
HDparse.c1116 push_type (enum type_pieces tp) in push_type() function
/NextBSD/contrib/binutils/binutils/
HDprdbg.c80 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 …]