/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
glcpp-lex.l | 98 glcpp_parser_t *parser = yyextra; 119 if (yyextra->space_tokens) 124 yylval->str = ralloc_strdup (yyextra, yytext); 125 yyextra->space_tokens = 0; 132 yylval->str = ralloc_strdup (yyextra, yytext); 144 yyextra->lexing_if = 1; 145 yyextra->space_tokens = 0; 150 yyextra->lexing_if = 1; 151 yyextra->space_tokens = 0; 156 yyextra->lexing_if = 1 [all...] |
/external/mesa3d/src/glsl/glcpp/ |
glcpp-lex.l | 98 glcpp_parser_t *parser = yyextra; 119 if (yyextra->space_tokens) 124 yylval->str = ralloc_strdup (yyextra, yytext); 125 yyextra->space_tokens = 0; 132 yylval->str = ralloc_strdup (yyextra, yytext); 144 yyextra->lexing_if = 1; 145 yyextra->space_tokens = 0; 150 yyextra->lexing_if = 1; 151 yyextra->space_tokens = 0; 156 yyextra->lexing_if = 1 [all...] |
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Tokenizer.l | 46 yyextra->leadingSpace = false; \ 47 yyextra->lineStart = true; \ 53 pp::Input* input = &yyextra->input; \ 54 pp::Input::Location* scanLoc = &yyextra->scanLoc; \ 67 result = yyextra->input.read(buf, maxSize); 102 yyextra->leadingSpace = true; 109 return yyextra->lineStart ? pp::Token::PP_HASH : pp::Token::PP_OTHER; 224 [ \t\v\f]+ { yyextra->leadingSpace = true; } 242 pp::Input* input = &yyextra->input; 243 pp::Input::Location* scanLoc = &yyextra->scanLoc [all...] |
Tokenizer.cpp | 141 #define yyextra yyg->yyextra_r macro 542 yyextra->leadingSpace = false; \ 543 yyextra->lineStart = true; \ 549 pp::Input* input = &yyextra->input; \ 550 pp::Input::Location* scanLoc = &yyextra->scanLoc; \ 563 result = yyextra->input.read(buf, maxSize); 903 yyextra->leadingSpace = true; 912 return yyextra->lineStart ? pp::Token::PP_HASH : pp::Token::PP_OTHER; 1101 { yyextra->leadingSpace = true; } 1129 pp::Input* input = &yyextra->input [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_lexer.ll | 62 if (yyextra->language_version >= allowed_version) { \ 64 } else if (yyextra->language_version >= reserved_version) { \ 65 _mesa_glsl_error(yylloc, yyextra, \ 70 return classify_identifier(yyextra, yytext); \ 82 #define ES yyextra->es_shader 126 literal_integer(yytext, yyleng, yyextra, yylval, yylloc, base) 300 if (yyextra->OES_EGL_image_external_enable) 311 if ((yyextra->language_version >= 140) 312 || yyextra->AMD_conservative_depth_enable 313 || yyextra->ARB_conservative_depth_enabl [all...] |
/external/mesa3d/src/glsl/ |
glsl_lexer.ll | 62 if (yyextra->language_version >= allowed_version) { \ 64 } else if (yyextra->language_version >= reserved_version) { \ 65 _mesa_glsl_error(yylloc, yyextra, \ 70 return classify_identifier(yyextra, yytext); \ 82 #define ES yyextra->es_shader 126 literal_integer(yytext, yyleng, yyextra, yylval, yylloc, base) 300 if (yyextra->OES_EGL_image_external_enable) 311 if ((yyextra->language_version >= 140) 312 || yyextra->AMD_conservative_depth_enable 313 || yyextra->ARB_conservative_depth_enabl [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program_lexer.l | 32 #define require_ARB_vp (yyextra->mode == ARB_vertex) 33 #define require_ARB_fp (yyextra->mode == ARB_fragment) 34 #define require_NV_fp (yyextra->option.NV_fragment) 35 #define require_shadow (yyextra->option.Shadow) 36 #define require_rect (yyextra->option.TexRect) 37 #define require_texarray (yyextra->option.TexArray) 48 return handle_ident(yyextra, yytext, yylval); \ 66 _mesa_parse_instruction_suffix(yyextra, \ 72 return handle_ident(yyextra, yytext, yylval); \ 331 [_a-zA-Z$][_a-zA-Z0-9$]* { return handle_ident(yyextra, yytext, yylval); [all...] |
/external/mesa3d/src/mesa/program/ |
program_lexer.l | 32 #define require_ARB_vp (yyextra->mode == ARB_vertex) 33 #define require_ARB_fp (yyextra->mode == ARB_fragment) 34 #define require_NV_fp (yyextra->option.NV_fragment) 35 #define require_shadow (yyextra->option.Shadow) 36 #define require_rect (yyextra->option.TexRect) 37 #define require_texarray (yyextra->option.TexArray) 48 return handle_ident(yyextra, yytext, yylval); \ 66 _mesa_parse_instruction_suffix(yyextra, \ 72 return handle_ident(yyextra, yytext, yylval); \ 331 [_a-zA-Z$][_a-zA-Z0-9$]* { return handle_ident(yyextra, yytext, yylval); [all...] |
/external/chromium_org/third_party/angle/src/compiler/ |
glslang.l | 275 TSymbol* symbol = yyextra->symbolTable.find(yytext); 288 yyextra->error(*yylloc, "Illegal use of reserved word", yytext, ""); 289 yyextra->recover(); 302 yyextra->warning(*yylloc, "Integer overflow", yytext, ""); 310 yyextra->warning(*yylloc, "Float overflow", yytext, "");
|
glslang_lex.cpp | 153 #define yyextra yyg->yyextra_r macro [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glcpp-lex.c | 132 #define yyextra yyg->yyextra_r macro 889 glcpp_parser_t *parser = yyextra; 1022 if (yyextra->space_tokens 1328 yy_top_state(yyextra); variable [all...] |
glsl_lexer.cc | 132 #define yyextra yyg->yyextra_r macro [all...] |
lex.yy.c | 132 #define yyextra yyg->yyextra_r macro [all...] |