Home | History | Annotate | Download | only in c2hal

Lines Matching full:yylval

75                 yylval->str = strdup(yytext);                            \
134 <INCLUDE_STATE>{PATH} { yylval->str = strdup(yytext); return INCLUDE_FILE; }
152 yylval->str = strdup(functionText.c_str());
161 yylval->str = strdup(yytext);
173 yylval->str = strdup(defineText.c_str());
186 yylval->str = strdup(otherText.c_str());
206 {ID} { yylval->str = strdup(yytext); return ID; }
207 0[xX]{H}+{IS}? { yylval->str = strdup(yytext); return INTEGRAL_VALUE; }
208 0{D}+{IS}? { yylval->str = strdup(yytext); return INTEGRAL_VALUE; }
209 {D}+{IS}? { yylval->str = strdup(yytext); return INTEGRAL_VALUE; }
211 {D}+{E}{FS}? { yylval->str = strdup(yytext); return VALUE; }
212 {D}+\.{E}?{FS}? { yylval->str = strdup(yytext); return VALUE; }
213 {D}*\.{D}+{E}?{FS}? { yylval->str = strdup(yytext); return VALUE; }
214 L?\"(\\.|[^\\"])*\" { yylval->str = strdup(yytext); return VALUE; }