/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ParseContextBase.cpp | 126 bool TParseContextBase::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::TParseContextBase 198 return lValueErrorCheck(loc, op, binaryNode->getLeft()); in lValueErrorCheck()
|
D | ParseHelper.h | 171 virtual bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*); 347 bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*) override;
|
D | glslang.y | 454 parseContext.lValueErrorCheck($2.loc, "++", $1); 459 parseContext.lValueErrorCheck($2.loc, "--", $1); 579 parseContext.lValueErrorCheck($1.loc, "++", $2); 583 parseContext.lValueErrorCheck($1.loc, "--", $2); 793 parseContext.lValueErrorCheck($2.loc, "assign", $1);
|
D | glslang.m4 | 454 parseContext.lValueErrorCheck($2.loc, "++", $1); 459 parseContext.lValueErrorCheck($2.loc, "--", $1); 579 parseContext.lValueErrorCheck($1.loc, "++", $2); 583 parseContext.lValueErrorCheck($1.loc, "--", $2); 793 parseContext.lValueErrorCheck($2.loc, "assign", $1);
|
D | glslang_tab.cpp | 4849 parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "++", (yyvsp[-1].interm.intermTypedNode)); in yyparse() 4859 parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "--", (yyvsp[-1].interm.intermTypedNode)); in yyparse() 5023 parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "++", (yyvsp[0].interm.intermTypedNode)); in yyparse() 5032 parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "--", (yyvsp[0].interm.intermTypedNode)); in yyparse() 5398 …parseContext.lValueErrorCheck((yyvsp[-1].interm).loc, "assign", (yyvsp[-2].interm.intermTypedNode)… in yyparse()
|
D | ParseHelper.cpp | 1189 if (lValueErrorCheck(arguments->getLoc(), "assign", arg->getAsTyped())) in handleFunctionCall() 2638 bool TParseContext::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::TParseContext 2665 errorReturn = lValueErrorCheck(loc, op, binaryNode->getLeft()); in lValueErrorCheck() 2699 if (TParseContextBase::lValueErrorCheck(loc, op, node)) in lValueErrorCheck()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | ParseContextBase.cpp | 126 bool TParseContextBase::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::TParseContextBase 198 return lValueErrorCheck(loc, op, binaryNode->getLeft()); in lValueErrorCheck()
|
D | ParseHelper.h | 173 virtual bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*); 373 bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*) override;
|
D | glslang.y | 475 parseContext.lValueErrorCheck($2.loc, "++", $1); 480 parseContext.lValueErrorCheck($2.loc, "--", $1); 600 parseContext.lValueErrorCheck($1.loc, "++", $2); 604 parseContext.lValueErrorCheck($1.loc, "--", $2); 814 parseContext.lValueErrorCheck($2.loc, "assign", $1);
|
D | glslang.m4 | 475 parseContext.lValueErrorCheck($2.loc, "++", $1); 480 parseContext.lValueErrorCheck($2.loc, "--", $1); 600 parseContext.lValueErrorCheck($1.loc, "++", $2); 604 parseContext.lValueErrorCheck($1.loc, "--", $2); 814 parseContext.lValueErrorCheck($2.loc, "assign", $1);
|
D | glslang_tab.cpp | 5352 parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "++", (yyvsp[-1].interm.intermTypedNode)); in yyparse() 5362 parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "--", (yyvsp[-1].interm.intermTypedNode)); in yyparse() 5526 parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "++", (yyvsp[0].interm.intermTypedNode)); in yyparse() 5535 parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "--", (yyvsp[0].interm.intermTypedNode)); in yyparse() 5901 …parseContext.lValueErrorCheck((yyvsp[-1].interm).loc, "assign", (yyvsp[-2].interm.intermTypedNode)… in yyparse()
|
D | ParseHelper.cpp | 1318 if (lValueErrorCheck(arguments->getLoc(), "assign", arg->getAsTyped())) in handleFunctionCall() 2845 bool TParseContext::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::TParseContext 2872 errorReturn = lValueErrorCheck(loc, op, binaryNode->getLeft()); in lValueErrorCheck() 2906 if (TParseContextBase::lValueErrorCheck(loc, op, node)) in lValueErrorCheck()
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.h | 123 bool lValueErrorCheck(const TSourceLoc &line, const char* op, TIntermTyped*);
|
D | ParseHelper.cpp | 303 bool TParseContext::lValueErrorCheck(const TSourceLoc &line, const char* op, TIntermTyped* node) in lValueErrorCheck() function in TParseContext 315 return lValueErrorCheck(line, op, binaryNode->getLeft()); in lValueErrorCheck() 317 errorReturn = lValueErrorCheck(line, op, binaryNode->getLeft()); in lValueErrorCheck() 1091 if(lValueErrorCheck(node->getLine(), "assign", node)) in functionCallLValueErrorCheck() 3123 if(lValueErrorCheck(loc, getOperatorString(op), child)) in addUnaryMathLValue()
|
D | glslang.y | 545 if (context->lValueErrorCheck(@2, "assign", $1))
|
D | glslang_tab.cpp | 2948 if (context->lValueErrorCheck((yylsp[-1]), "assign", (yyvsp[-2].interm.intermTypedNode))) in yyparse()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/ |
D | hlslParseHelper.h | 199 bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*) override;
|
D | hlslParseHelper.cpp | 222 bool HlslParseContext::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::HlslParseContext 244 return TParseContextBase::lValueErrorCheck(loc, op, node); in lValueErrorCheck() 271 if (lValueErrorCheck(loc, op, lhs)) in handleLvalue() 518 if (lValueErrorCheck(loc, op, lhs)) in handleLvalue()
|
/external/deqp-deps/glslang/glslang/HLSL/ |
D | hlslParseHelper.h | 199 bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*) override;
|
D | hlslParseHelper.cpp | 222 bool HlslParseContext::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::HlslParseContext 244 return TParseContextBase::lValueErrorCheck(loc, op, node); in lValueErrorCheck() 271 if (lValueErrorCheck(loc, op, lhs)) in handleLvalue() 518 if (lValueErrorCheck(loc, op, lhs)) in handleLvalue()
|