Home | History | Annotate | Download | only in c2hal

Lines Matching refs:yytext

73                 yylval->str = strdup(yytext);                            \
111 \/\*([^*]|\*+[^*\/])*\*+\/ { last_comment = strdup(yytext); }
133 <INCLUDE_STATE>{PATH} { yylval->str = strdup(yytext); return INCLUDE_FILE; }
138 functionText = strdup(yytext);
141 <FUNCTION_STATE>[^{}]+ { functionText += yytext; }
142 <FUNCTION_STATE>"{" { functionText += yytext; numB += 1;}
144 functionText += yytext;
160 yylval->str = strdup(yytext);
166 defineText += yytext;
168 <DEFINE_SLURP_STATE>[^\\\n] { defineText += yytext; }
169 <DEFINE_SLURP_STATE>"\\\n" { defineText += yytext; }
176 "using" { BEGIN(COPY_DECL_STATE); otherText = strdup(yytext); }
177 "#"{S}*{L}+ { BEGIN(COPY_DECL_STATE); otherText = strdup(yytext); }
179 otherText += yytext;
181 <COPY_DECL_STATE>[^\\\n] { otherText += yytext; }
182 <COPY_DECL_STATE>"\\\n" { otherText += yytext; }
205 {ID} { yylval->str = strdup(yytext); return ID; }
206 0[xX]{H}+{IS}? { yylval->str = strdup(yytext); return INTEGRAL_VALUE; }
207 0{D}+{IS}? { yylval->str = strdup(yytext); return INTEGRAL_VALUE; }
208 {D}+{IS}? { yylval->str = strdup(yytext); return INTEGRAL_VALUE; }
210 {D}+{E}{FS}? { yylval->str = strdup(yytext); return VALUE; }
211 {D}+\.{E}?{FS}? { yylval->str = strdup(yytext); return VALUE; }
212 {D}*\.{D}+{E}?{FS}? { yylval->str = strdup(yytext); return VALUE; }
213 L?\"(\\.|[^\\"])*\" { yylval->str = strdup(yytext); return VALUE; }