Lines Matching refs:yytext
48 return handle_ident(yyextra, yytext, yylval); \
67 yytext + len, \
72 return handle_ident(yyextra, yytext, yylval); \
307 [_a-zA-Z$][_a-zA-Z0-9$]* { return handle_ident(yyextra, yytext, yylval); }
312 yylval->integer = strtol(yytext, NULL, 10);
316 yylval->real = _mesa_strtof(yytext, NULL);
320 yylval->real = _mesa_strtof(yytext, NULL);
324 yylval->real = _mesa_strtof(yytext, NULL);
328 yylval->real = _mesa_strtof(yytext, NULL);
341 | mask_from_char(yytext[3]);
358 | mask_from_char(yytext[2]);
364 | mask_from_char(yytext[2]);
374 const unsigned s = swiz_from_char(yytext[1]);
376 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
381 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
382 swiz_from_char(yytext[2]),
383 swiz_from_char(yytext[3]),
384 swiz_from_char(yytext[4]));
398 | mask_from_char(yytext[3]);
415 | mask_from_char(yytext[2]);
421 | mask_from_char(yytext[2]);
431 const unsigned s = swiz_from_char(yytext[1]);
433 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
450 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
451 swiz_from_char(yytext[2]),
452 swiz_from_char(yytext[3]),
453 swiz_from_char(yytext[4]));
469 . { return yytext[0]; }