/third_party/glslang/glslang/MachineIndependent/ |
D | ParseContextBase.cpp | 125 bool TParseContextBase::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::TParseContextBase 197 return lValueErrorCheck(loc, op, binaryNode->getLeft()); in lValueErrorCheck()
|
D | ParseHelper.h | 175 virtual bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*); 380 bool lValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*) override;
|
D | glslang.y | 436 parseContext.lValueErrorCheck($2.loc, "++", $1); 441 parseContext.lValueErrorCheck($2.loc, "--", $1); 582 parseContext.lValueErrorCheck($1.loc, "++", $2); 586 parseContext.lValueErrorCheck($1.loc, "--", $2); 796 parseContext.lValueErrorCheck($2.loc, "assign", $1);
|
D | glslang_tab.cpp | 5382 parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "++", (yyvsp[-1].interm.intermTypedNode)); in yyparse() 5392 parseContext.lValueErrorCheck((yyvsp[0].lex).loc, "--", (yyvsp[-1].interm.intermTypedNode)); in yyparse() 5579 parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "++", (yyvsp[0].interm.intermTypedNode)); in yyparse() 5588 parseContext.lValueErrorCheck((yyvsp[-1].lex).loc, "--", (yyvsp[0].interm.intermTypedNode)); in yyparse() 5954 …parseContext.lValueErrorCheck((yyvsp[-1].interm).loc, "assign", (yyvsp[-2].interm.intermTypedNode)… in yyparse()
|
D | ParseHelper.cpp | 1374 if (lValueErrorCheck(arguments->getLoc(), "assign", arg->getAsTyped())) in handleFunctionCall() 3076 bool TParseContext::lValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in lValueErrorCheck() function in glslang::TParseContext 3101 errorReturn = lValueErrorCheck(loc, op, binaryNode->getLeft()); in lValueErrorCheck() 3135 if (TParseContextBase::lValueErrorCheck(loc, op, node)) in lValueErrorCheck()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
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 | ParseHelper.h | 123 bool lValueErrorCheck(const TSourceLoc &line, const char* op, TIntermTyped*);
|
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()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslParseHelper.h | 201 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()
|