Lines Matching refs:gram_text
407 extern char *gram_text;
408 #define yytext_ptr gram_text
864 char *gram_text; variable
933 #define YY_USER_ACTION adjust_location (loc, gram_text, gram_leng);
958 obstack_grow (&obstack_for_string, gram_text, gram_leng)
1110 #define ECHO (void) fwrite( gram_text, gram_leng, 1, gram_out )
1221 (gram_text[gram_leng - 1] == '\n'); \
1356 (long)yy_rule_linenum[yy_act], gram_text );
1359 gram_text );
1407 handle_syncline (gram_text + sizeof "#line " - 1, *loc);
1620 complain_at (*loc, _("invalid directive: %s"), quote (gram_text));
1642 val->symbol = symbol_get (gram_text, *loc);
1652 val->integer = scan_integer (gram_text, 10, *loc);
1660 val->integer = scan_integer (gram_text, 16, *loc);
1701 obstack_grow (&obstack_for_string, gram_text + 1, gram_leng - 2);
1722 complain_at (*loc, _("invalid character: %s"), quote (gram_text));
1752 scanner_cursor.column -= mbsnwidth (gram_text, gram_leng, 0);
1910 unsigned long int c = strtoul (gram_text + 1, NULL, 8);
1912 complain_at (*loc, _("invalid escape sequence: %s"), quote (gram_text));
1914 complain_at (*loc, _("invalid null character: %s"), quote (gram_text));
1924 unsigned long int c = strtoul (gram_text + 2, NULL, 16);
1926 complain_at (*loc, _("invalid escape sequence: %s"), quote (gram_text));
1928 complain_at (*loc, _("invalid null character: %s"), quote (gram_text));
1972 obstack_1grow (&obstack_for_string, gram_text[1]);
1978 int c = convert_ucn_to_byte (gram_text);
1980 complain_at (*loc, _("invalid escape sequence: %s"), quote (gram_text));
1982 complain_at (*loc, _("invalid null character: %s"), quote (gram_text));
1992 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (gram_text));
2103 bool valid = gram_text[0] == '{' || token_type == PERCENT_UNION;
2104 scanner_cursor.column -= mbsnwidth (gram_text, gram_leng, 0);
2196 handle_dollar (token_type, gram_text, *loc);
2201 handle_at (token_type, gram_text, *loc);
3170 gram_text[gram_leng] = (yy_hold_char); \
3171 (yy_c_buf_p) = gram_text + yyless_macro_arg; \
3223 return gram_text; in gram_get_text()