Lines Matching refs:text

20 %token <text> '(' '*' '&'
76 %type <text> struct_or_union pointer opt_type_qualifiers type_qualifier_list
78 %type <text> enumeration
133 typedef struct text { struct
134 char text[MAX_TEXT_SIZE]; /* source text */ member
151 char *text; /* source text */ argument
167 char *text; /* source text */ member
203 Text text; member
466 if (strcmp($1->text, $1->name) != 0)
475 if (strcmp($3->text, $3->name) != 0)
563 free($1.text);
564 free($2.text);
577 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
581 new_decl_spec(&$$, $1.text, $1.begin, DS_EXTERN);
585 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
589 new_decl_spec(&$$, $1.text, $1.begin, DS_STATIC);
593 new_decl_spec(&$$, $1.text, $1.begin, DS_INLINE);
597 new_decl_spec(&$$, $1.text, $1.begin, DS_JUNK);
604 new_decl_spec(&$$, $1.text, $1.begin, DS_CHAR);
608 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
612 new_decl_spec(&$$, $1.text, $1.begin, DS_FLOAT);
616 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
620 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
624 new_decl_spec(&$$, $1.text, $1.begin, DS_SHORT);
628 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
632 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
636 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
640 new_decl_spec(&$$, $1.text, $1.begin, DS_CHAR);
644 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
648 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
653 s = find_symbol(typedef_names, $1.text);
655 new_decl_spec(&$$, $1.text, $1.begin, s->flags);
664 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
672 s = find_symbol(define_names, $1.text);
674 new_decl_spec(&$$, $1.text, $1.begin, s->flags);
683 (void)sprintf(s = buf, "%.*s %.*s", TEXT_LEN, $1.text, TEXT_LEN, $2.text);
690 (void)sprintf(s = buf, "%.*s {}", TEXT_LEN, $1.text);
695 (void)sprintf(buf, "%.*s %.*s", TEXT_LEN, $1.text, TEXT_LEN, $2.text);
703 imply_typedef($$.text);
707 imply_typedef($$.text);
748 (void)sprintf(s = buf, "enum %.*s", TEXT_LEN, $2.text);
755 (void)sprintf(s = buf, "%.*s {}", TEXT_LEN, $1.text);
760 (void)sprintf(buf, "enum %.*s", TEXT_LEN, $2.text);
782 (void)sprintf(buf, "%.*s%.*s", TEXT_LEN, $1.text, TEXT_LEN, $$->text);
783 free($$->text);
784 $$->text = xstrdup(buf);
794 $$ = new_declarator($1.text, $1.text, $1.begin);
799 (void)sprintf(buf, "(%.*s)", TEXT_LEN, $$->text);
800 free($$->text);
801 $$->text = xstrdup(buf);
807 (void)sprintf(buf, "%.*s%.*s", TEXT_LEN, $$->text, TEXT_LEN, $2.text);
808 free($$->text);
809 $$->text = xstrdup(buf);
832 (void)sprintf($$.text, "*%.*s", TEXT_LEN, $2.text);
837 (void)sprintf($$.text, "*%.*s%.*s", TEXT_LEN, $2.text, TEXT_LEN, $3.text);
845 strcpy($$.text, "");
854 (void)sprintf($$.text, "%s ", $1.text);
856 free($1.text);
860 (void)sprintf($$.text, "%.*s%.*s ", TEXT_LEN, $1.text, TEXT_LEN, $2.text);
862 free($2.text);
915 add_ident_list(&$$, &$$, $1.text);
919 add_ident_list(&$$, &$1, $3.text);
935 (void)sprintf($$.text, "&%.*s", TEXT_LEN, $2.text);
943 $$ = new_declarator($1.text, "", $1.begin);
948 (void)sprintf(buf, "%.*s%.*s", TEXT_LEN, $1.text, TEXT_LEN, $$->text);
949 free($$->text);
950 $$->text = xstrdup(buf);
960 (void)sprintf(buf, "(%.*s)", TEXT_LEN, $$->text);
961 free($$->text);
962 $$->text = xstrdup(buf);
968 (void)sprintf(buf, "%.*s%.*s", TEXT_LEN, $$->text, TEXT_LEN, $2.text);
969 free($$->text);
970 $$->text = xstrdup(buf);
974 $$ = new_declarator($1.text, "", $1.begin);