Lines Matching refs:text

20 %token <text> '(' '*' '&'
76 %type <text> struct_or_union pointer opt_type_qualifiers type_qualifier_list
78 %type <text> enumeration
131 /* Source file text */
132 typedef struct text {
133 char text[MAX_TEXT_SIZE]; /* source text */
150 char *text; /* source text */
166 char *text; /* source text */
202 Text text;
465 if (strcmp($1->text, $1->name) != 0)
474 if (strcmp($3->text, $3->name) != 0)
562 free($1.text);
563 free($2.text);
576 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
580 new_decl_spec(&$$, $1.text, $1.begin, DS_EXTERN);
584 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
588 new_decl_spec(&$$, $1.text, $1.begin, DS_STATIC);
592 new_decl_spec(&$$, $1.text, $1.begin, DS_INLINE);
596 new_decl_spec(&$$, $1.text, $1.begin, DS_JUNK);
603 new_decl_spec(&$$, $1.text, $1.begin, DS_CHAR);
607 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
611 new_decl_spec(&$$, $1.text, $1.begin, DS_FLOAT);
615 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
619 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
623 new_decl_spec(&$$, $1.text, $1.begin, DS_SHORT);
627 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
631 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
635 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
639 new_decl_spec(&$$, $1.text, $1.begin, DS_CHAR);
643 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
647 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
652 s = find_symbol(typedef_names, $1.text);
654 new_decl_spec(&$$, $1.text, $1.begin, s->flags);
663 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
671 s = find_symbol(define_names, $1.text);
673 new_decl_spec(&$$, $1.text, $1.begin, s->flags);
682 (void)sprintf(s = buf, "%s %s", $1.text, $2.text);
689 (void)sprintf(s = buf, "%s {}", $1.text);
694 (void)sprintf(buf, "%s %s", $1.text, $2.text);
702 imply_typedef($$.text);
706 imply_typedef($$.text);
747 (void)sprintf(s = buf, "enum %s", $2.text);
754 (void)sprintf(s = buf, "%s {}", $1.text);
759 (void)sprintf(buf, "enum %s", $2.text);
781 (void)sprintf(buf, "%s%s", $1.text, $$->text);
782 free($$->text);
783 $$->text = xstrdup(buf);
793 $$ = new_declarator($1.text, $1.text, $1.begin);
798 (void)sprintf(buf, "(%s)", $$->text);
799 free($$->text);
800 $$->text = xstrdup(buf);
806 (void)sprintf(buf, "%s%s", $$->text, $2.text);
807 free($$->text);
808 $$->text = xstrdup(buf);
831 (void)sprintf($$.text, "*%s", $2.text);
836 (void)sprintf($$.text, "*%s%s", $2.text, $3.text);
844 strcpy($$.text, "");
853 (void)sprintf($$.text, "%s ", $1.text);
855 free($1.text);
859 (void)sprintf($$.text, "%s%s ", $1.text, $2.text);
861 free($2.text);
914 add_ident_list(&$$, &$$, $1.text);
918 add_ident_list(&$$, &$1, $3.text);
934 (void)sprintf($$.text, "&%s", $2.text);
942 $$ = new_declarator($1.text, "", $1.begin);
947 (void)sprintf(buf, "%s%s", $1.text, $$->text);
948 free($$->text);
949 $$->text = xstrdup(buf);
959 (void)sprintf(buf, "(%s)", $$->text);
960 free($$->text);
961 $$->text = xstrdup(buf);
967 (void)sprintf(buf, "%s%s", $$->text, $2.text);
968 free($$->text);
969 $$->text = xstrdup(buf);
973 $$ = new_declarator($1.text, "", $1.begin);