Searched refs:rValueErrorCheck (Results 1 – 5 of 5) sorted by relevance
/third_party/glslang/glslang/MachineIndependent/ |
D | ParseContextBase.cpp | 228 void TParseContextBase::rValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in rValueErrorCheck() function in glslang::TParseContextBase 259 rValueErrorCheck(loc, op, binaryNode->getLeft()); in rValueErrorCheck()
|
D | ParseHelper.h | 176 virtual void rValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*); 381 void rValueErrorCheck(const TSourceLoc&, const char* op, TIntermTyped*) override;
|
D | glslang.y | 778 parseContext.rValueErrorCheck($2.loc, "?", $1); 779 parseContext.rValueErrorCheck($5.loc, ":", $4); 780 parseContext.rValueErrorCheck($5.loc, ":", $6); 797 parseContext.rValueErrorCheck($2.loc, "assign", $3);
|
D | ParseHelper.cpp | 870 rValueErrorCheck(loc, str, left->getAsTyped()); in handleBinaryMath() 871 rValueErrorCheck(loc, str, right->getAsTyped()); in handleBinaryMath() 912 rValueErrorCheck(loc, str, childNode); in handleUnaryMath() 3196 void TParseContext::rValueErrorCheck(const TSourceLoc& loc, const char* op, TIntermTyped* node) in rValueErrorCheck() function in glslang::TParseContext 3199 TParseContextBase::rValueErrorCheck(loc, op, node); in rValueErrorCheck() 7771 rValueErrorCheck(loc, "initializer", initializer); in declareVariable() 8213 rValueErrorCheck(loc, "constructor", node->getAsTyped()); in addConstructor()
|
D | glslang_tab.cpp | 5929 parseContext.rValueErrorCheck((yyvsp[-4].lex).loc, "?", (yyvsp[-5].interm.intermTypedNode)); in yyparse() 5930 parseContext.rValueErrorCheck((yyvsp[-1].lex).loc, ":", (yyvsp[-2].interm.intermTypedNode)); in yyparse() 5931 parseContext.rValueErrorCheck((yyvsp[-1].lex).loc, ":", (yyvsp[0].interm.intermTypedNode)); in yyparse() 5955 …parseContext.rValueErrorCheck((yyvsp[-1].interm).loc, "assign", (yyvsp[0].interm.intermTypedNode)); in yyparse()
|