Lines Matching refs:yytext
183 int i = atoi(yytext + 2);
197 "not defined\n", yytext);
213 int i = atoi(yytext + 1);
227 "not defined\n", yytext);
274 " overflow\n", yytext, v);
285 yypcb->pcb_hdl->dt_macros, yytext + 2);
291 "is not defined\n", yytext);
307 yypcb->pcb_hdl->dt_macros, yytext + 1);
311 "is not defined\n", yytext);
329 return (id_or_type(yytext));
333 if ((yylval.l_str = strdup(yytext)) == NULL)
350 yylval.l_int = strtoull(yytext, &p, 0);
353 yyintdecimal = yytext[0] != '0';
357 "integer overflow\n", yytext);
362 "invalid digit %c\n", yytext, *p);
383 yylval.l_str = strndup(yytext + 1, yyleng - 2);
562 <S0>. yyerror("syntax error near \"%c\"\n", yytext[0]);
586 strchr(yytext, ':') == NULL) {
588 char *p = strchr(yytext, '*');
589 char *q = yytext + yyleng - 1;
591 if (p != NULL && p > yytext)
594 if (dt_type_lookup(yytext, NULL) == 0) {
595 yylval.l_str = strdup(yytext);
602 if (p != NULL && p > yytext) {
611 if (p != NULL && p > yytext)
615 if ((yylval.l_str = strdup(yytext)) == NULL)
625 <S2>. yyerror("syntax error near \"%c\"\n", yytext[0]);