Searched refs:enterStructDeclaration (Results 1 – 8 of 8) sorted by relevance
/external/angle/src/compiler/translator/ |
D | glslang.y | 597 context->enterStructDeclaration(@1, ImmutableString($1.string)); 1421 …: STRUCT identifier LEFT_BRACE { context->enterStructDeclaration(@2, ImmutableString($2.string)); … 1424 …| STRUCT LEFT_BRACE { context->enterStructDeclaration(@2, kEmptyImmutableString); } struct_declara…
|
D | ParseContext.h | 411 void enterStructDeclaration(const TSourceLoc &line, const ImmutableString &identifier);
|
D | glslang_tab_autogen.cpp | 3135 context->enterStructDeclaration((yylsp[-1]), ImmutableString((yyvsp[-1].lex).string)); in yyparse() 4784 context->enterStructDeclaration((yylsp[-1]), ImmutableString((yyvsp[-1].lex).string)); in yyparse() 4802 context->enterStructDeclaration((yylsp[0]), kEmptyImmutableString); in yyparse()
|
D | ParseContext.cpp | 4580 void TParseContext::enterStructDeclaration(const TSourceLoc &line, in enterStructDeclaration() function in sh::TParseContext
|
/external/swiftshader/src/OpenGL/compiler/ |
D | glslang.y | 600 if (context->enterStructDeclaration(@1, *$1.string)) 1326 …: STRUCT IDENTIFIER LEFT_BRACE { if (context->enterStructDeclaration(@2, *$2.string)) context->rec… 1329 …| STRUCT LEFT_BRACE { if (context->enterStructDeclaration(@2, *$2.string)) context->recover(); } s…
|
D | ParseHelper.h | 219 bool enterStructDeclaration(const TSourceLoc &line, const TString& identifier);
|
D | glslang_tab.cpp | 3066 if (context->enterStructDeclaration((yylsp[-1]), *(yyvsp[-1].lex).string)) in yyparse() 4297 … { if (context->enterStructDeclaration((yylsp[-1]), *(yyvsp[-1].lex).string)) context->recover(); } in yyparse() 4311 { if (context->enterStructDeclaration((yylsp[0]), *(yyvsp[0].lex).string)) context->recover(); } in yyparse()
|
D | ParseHelper.cpp | 3018 bool TParseContext::enterStructDeclaration(const TSourceLoc &line, const TString& identifier) in enterStructDeclaration() function in TParseContext
|