Lines Matching refs:yytext
53 return handle_ident(yyextra, yytext, yylval); \
72 yytext + len, \
77 return handle_ident(yyextra, yytext, yylval); \
312 [_a-zA-Z$][_a-zA-Z0-9$]* { return handle_ident(yyextra, yytext, yylval); }
317 yylval->integer = strtol(yytext, NULL, 10);
321 yylval->real = _mesa_strtof(yytext, NULL);
325 yylval->real = _mesa_strtof(yytext, NULL);
329 yylval->real = _mesa_strtof(yytext, NULL);
333 yylval->real = _mesa_strtof(yytext, NULL);
346 | mask_from_char(yytext[3]);
363 | mask_from_char(yytext[2]);
369 | mask_from_char(yytext[2]);
379 const unsigned s = swiz_from_char(yytext[1]);
381 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
386 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
387 swiz_from_char(yytext[2]),
388 swiz_from_char(yytext[3]),
389 swiz_from_char(yytext[4]));
403 | mask_from_char(yytext[3]);
420 | mask_from_char(yytext[2]);
426 | mask_from_char(yytext[2]);
436 const unsigned s = swiz_from_char(yytext[1]);
438 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
455 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
456 swiz_from_char(yytext[2]),
457 swiz_from_char(yytext[3]),
458 swiz_from_char(yytext[4]));
474 . { return yytext[0]; }