Lines Matching refs:yytext
48 return handle_ident(yyextra, yytext, yylval); \
67 yytext + len, \
72 return handle_ident(yyextra, yytext, yylval); \
308 [_a-zA-Z$][_a-zA-Z0-9$]* { return handle_ident(yyextra, yytext, yylval); }
313 yylval->integer = strtol(yytext, NULL, 10);
317 yylval->real = _mesa_strtof(yytext, NULL);
321 yylval->real = _mesa_strtof(yytext, NULL);
325 yylval->real = _mesa_strtof(yytext, NULL);
329 yylval->real = _mesa_strtof(yytext, NULL);
342 | mask_from_char(yytext[3]);
359 | mask_from_char(yytext[2]);
365 | mask_from_char(yytext[2]);
375 const unsigned s = swiz_from_char(yytext[1]);
377 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
382 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
383 swiz_from_char(yytext[2]),
384 swiz_from_char(yytext[3]),
385 swiz_from_char(yytext[4]));
399 | mask_from_char(yytext[3]);
416 | mask_from_char(yytext[2]);
422 | mask_from_char(yytext[2]);
432 const unsigned s = swiz_from_char(yytext[1]);
434 yylval->swiz_mask.mask = mask_from_char(yytext[1]);
451 yylval->swiz_mask.swizzle = MAKE_SWIZZLE4(swiz_from_char(yytext[1]),
452 swiz_from_char(yytext[2]),
453 swiz_from_char(yytext[3]),
454 swiz_from_char(yytext[4]));
470 . { return yytext[0]; }