Lines Matching refs:yytext
255 yylval->lex.string = NewPoolTString(yytext);
265 yylval->lex.string = NewPoolTString(yytext);
325 yylval->lex.string = NewPoolTString(yytext);
394 yylval->lex.string = NewPoolTString(yytext);
401 <*>. { context->warning(*yylloc, "Unknown char", yytext, ""); return 0; }
425 TSymbol* symbol = yyextra->symbolTable.find(yytext, yyextra->getShaderVersion()); in check_type()
440 yyextra->error(*yylloc, "Illegal use of reserved word", yytext, ""); in reserved_word()
477 yylval->lex.string = NewPoolTString(yytext); in ES2_identifier_ES3_keyword()
490 … context->error(*yylloc, "Unsigned integers are unsupported prior to GLSL ES 3.00", yytext, ""); in uint_constant()
495 if (!atou_clamp(yytext, &(yylval->lex.u))) in uint_constant()
496 yyextra->warning(*yylloc, "Integer overflow", yytext, ""); in uint_constant()
507 context->error(*yylloc, "Floating-point suffix unsupported prior to GLSL ES 3.00", yytext); in floatsuffix_check()
512 std::string text = yytext; in floatsuffix_check()
515 yyextra->warning(*yylloc, "Float overflow", yytext, ""); in floatsuffix_check()
523 if (!atoi_clamp(yytext, &(yylval->lex.i))) in int_constant()
524 yyextra->warning(*yylloc, "Integer overflow", yytext, ""); in int_constant()
531 if (!atof_clamp(yytext, &(yylval->lex.f))) in float_constant()
532 yyextra->warning(*yylloc, "Float overflow", yytext, ""); in float_constant()
542 context->error(*lloc, reason, yytext); in yyerror()