Searched refs:rValueErrorCheck (Results 1 – 6 of 6) sorted by relevance
/third_party/glslang/glslang/MachineIndependent/ |
D | ParseContextBase.cpp | 220 void TParseContextBase::rValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in rValueErrorCheck() function in glslang::TParseContextBase 233 rValueErrorCheck(loc, op, binaryNode->getLeft()); in rValueErrorCheck()
|
D | ParseHelper.h | 172 virtual void rValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*); 347 void rValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*) override;
|
D | glslang.y | 761 parseContext.rValueErrorCheck($2.loc, "?", $1); 762 parseContext.rValueErrorCheck($5.loc, ":", $4); 763 parseContext.rValueErrorCheck($5.loc, ":", $6); 780 parseContext.rValueErrorCheck($2.loc, "assign", $3);
|
D | ParseHelper.cpp | 733 rValueErrorCheck(loc, str, left->getAsTyped()); in handleBinaryMath() 734 rValueErrorCheck(loc, str, right->getAsTyped()); in handleBinaryMath() 773 rValueErrorCheck(loc, str, childNode); in handleUnaryMath() 2722 void TParseContext::rValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in rValueErrorCheck() function in glslang::TParseContext 2725 TParseContextBase::rValueErrorCheck(loc, op, node); in rValueErrorCheck() 6610 rValueErrorCheck(loc, "initializer", initializer); in declareVariable() 6987 rValueErrorCheck(loc, "constructor", node->getAsTyped()); in addConstructor()
|
D | glslang.m4 | 761 parseContext.rValueErrorCheck($2.loc, "?", $1); 762 parseContext.rValueErrorCheck($5.loc, ":", $4); 763 parseContext.rValueErrorCheck($5.loc, ":", $6); 780 parseContext.rValueErrorCheck($2.loc, "assign", $3);
|
D | glslang_tab.cpp | 4924 parseContext.rValueErrorCheck((yyvsp[-4].lex).loc, "?", (yyvsp[-5].interm.intermTypedNode)); in yyparse() 4925 parseContext.rValueErrorCheck((yyvsp[-1].lex).loc, ":", (yyvsp[-2].interm.intermTypedNode)); in yyparse() 4926 parseContext.rValueErrorCheck((yyvsp[-1].lex).loc, ":", (yyvsp[0].interm.intermTypedNode)); in yyparse() 4950 …parseContext.rValueErrorCheck((yyvsp[-1].interm).loc, "assign", (yyvsp[0].interm.intermTypedNode)); in yyparse()
|