Lines Matching full:string1
4809 %token <string> STRING1
4811 %type <string> string1
4820 %destructor { free ($$); printf ("%d", @$.first_line); } STRING1 string1
4826 a `STRING1' or a `string1', it also prints its line number to `stdout'.
4909 %token <string> STRING1
4911 %type <string> string1
4920 %printer { fprintf (yyoutput, "\"%s\"", $$); } STRING1 string1
4926 `STRING1' or a `string1', it formats it as a string in double quotes.