Lines Matching refs:yytext
219 int i = atoi(yytext + 2);
233 "not defined\n", yytext);
249 int i = atoi(yytext + 1);
263 "not defined\n", yytext);
310 " overflow\n", yytext, v);
321 yypcb->pcb_hdl->dt_macros, yytext + 2);
327 "is not defined\n", yytext);
343 yypcb->pcb_hdl->dt_macros, yytext + 1);
347 "is not defined\n", yytext);
365 return (id_or_type(yytext));
369 if ((yylval.l_str = strdup(yytext)) == NULL)
386 yylval.l_int = strtoull(yytext, &p, 0);
389 yyintdecimal = yytext[0] != '0';
393 "integer overflow\n", yytext);
398 "invalid digit %c\n", yytext, *p);
419 yylval.l_str = strndup(yytext + 1, yyleng - 2);
598 <S0>. yyerror("syntax error near \"%c\"\n", yytext[0]);
622 strchr(yytext, ':') == NULL) {
624 char *p = strchr(yytext, '*');
625 char *q = yytext + yyleng - 1;
627 if (p != NULL && p > yytext)
630 if (dt_type_lookup(yytext, NULL) == 0) {
631 yylval.l_str = strdup(yytext);
638 if (p != NULL && p > yytext) {
647 if (p != NULL && p > yytext)
651 if ((yylval.l_str = strdup(yytext)) == NULL)
661 <S2>. yyerror("syntax error near \"%c\"\n", yytext[0]);