Searched refs:yyextra (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/glsl/glcpp/ |
D | glcpp-lex.l | 90 if (yyextra->space_tokens) 95 yylval->str = talloc_strdup (yyextra, yytext); 96 yyextra->space_tokens = 0; 103 yylval->str = talloc_strdup (yyextra, yytext); 141 yyextra->lexing_if = 1; 142 yyextra->space_tokens = 0; 147 yyextra->lexing_if = 1; 148 yyextra->space_tokens = 0; 153 yyextra->lexing_if = 1; 154 yyextra->space_tokens = 0; [all …]
|
D | glcpp-lex.c | 131 #define yyextra yyg->yyextra_r macro 1116 if (yyextra->space_tokens) 1124 yylval->str = hieralloc_strdup (yyextra, yytext); 1125 yyextra->space_tokens = 0; 1135 yylval->str = hieralloc_strdup (yyextra, yytext); 1189 yyextra->lexing_if = 1; 1190 yyextra->space_tokens = 0; 1199 yyextra->lexing_if = 1; 1200 yyextra->space_tokens = 0; 1209 yyextra->lexing_if = 1; [all …]
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
D | glslang.l | 61 TParseContext* context = yyextra; 507 TSymbol* symbol = yyextra->symbolTable.find(yytext); in check_type() 508 if (yyextra->lexAfterType == false && symbol && symbol->isVariable()) { in check_type() 511 yyextra->lexAfterType = true; in check_type() 522 yyextra->error(yylineno, "Illegal use of reserved word", yytext, ""); in reserved_word() 523 yyextra->recover(); in reserved_word()
|
D | glslang_lex.cpp | 140 #define yyextra yyg->yyextra_r macro 1008 TParseContext* context = yyextra; 2540 return yyextra; in yyget_extra() 2613 yyextra = user_defined ; in yyset_extra() 3123 TSymbol* symbol = yyextra->symbolTable.find(yytext); in check_type() 3124 if (yyextra->lexAfterType == false && symbol && symbol->isVariable()) { in check_type() 3127 yyextra->lexAfterType = true; in check_type() 3138 yyextra->error(yylineno, "Illegal use of reserved word", yytext, ""); in reserved_word() 3139 yyextra->recover(); in reserved_word()
|
/external/mesa3d/src/glsl/ |
D | glsl_lexer.lpp | 57 if (yyextra->language_version >= allowed_version) { \ 59 } else if (yyextra->language_version >= reserved_version) { \ 60 _mesa_glsl_error(yylloc, yyextra, \ 77 #define ES yyextra->es_shader 250 if ((yyextra->language_version >= 140) 251 || yyextra->ARB_explicit_attrib_location_enable 252 || (yyextra->ARB_fragment_coord_conventions_enable)){ 414 struct _mesa_glsl_parse_state *state = yyextra;
|
D | glsl_lexer.cpp | 131 #define yyextra yyg->yyextra_r macro 1036 if (yyextra->language_version >= allowed_version) { \ 1038 } else if (yyextra->language_version >= reserved_version) { \ 1039 _mesa_glsl_error(yylloc, yyextra, \ 1056 #define ES yyextra->es_shader 1911 if ((yyextra->language_version >= 140) 1912 || yyextra->ARB_explicit_attrib_location_enable 1913 || (yyextra->ARB_fragment_coord_conventions_enable)){ 2513 struct _mesa_glsl_parse_state *state = yyextra; 3335 return yyextra; in _mesa_glsl_get_extra() [all …]
|