Lines Matching refs:yytext
48 return handle_ident(yyextra, yytext, yylval); \
67 yytext + len, \
72 return handle_ident(yyextra, yytext, yylval); \
331 [_a-zA-Z$][_a-zA-Z0-9$]* { return handle_ident(yyextra, yytext, yylval); }
336 yylval->integer = strtol(yytext, NULL, 10);
340 yylval->real = _mesa_strtof(yytext, NULL);
344 yylval->real = _mesa_strtof(yytext, NULL);
348 yylval->real = _mesa_strtof(yytext, NULL);
352 yylval->real = _mesa_strtof(yytext, NULL);
365 | mask_from_char(yytext[3]);
382 | mask_from_char(yytext[2]);
388 | mask_from_char(yytext[2]);
398 const unsigned s = swiz_from_char(yytext[1]);
400 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
405 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
406 swiz_from_char(yytext[2]),
407 swiz_from_char(yytext[3]),
408 swiz_from_char(yytext[4]));
422 | mask_from_char(yytext[3]);
439 | mask_from_char(yytext[2]);
445 | mask_from_char(yytext[2]);
455 const unsigned s = swiz_from_char(yytext[1]);
457 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
474 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
475 swiz_from_char(yytext[2]),
476 swiz_from_char(yytext[3]),
477 swiz_from_char(yytext[4]));
493 . { return yytext[0]; }