Home
last modified time | relevance | path

Searched refs:getOperatorString (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DValidateLimitations.cpp322 getOperatorString(binOp->getOp())); in validateForLoopCond()
391 error(expr->getLine(), "Invalid operator", getOperatorString(op)); in validateForLoopExpr()
DParseHelper.cpp3185 unaryOpError(loc, getOperatorString(op), child->getCompleteString()); in addUnaryMath()
3194 if(lValueErrorCheck(loc, getOperatorString(op), child)) in addUnaryMathLValue()
3205 error(loc, "Invalid operation for arrays", getOperatorString(op)); in binaryOpCommonCheck()
3211 error(loc, "array / non-array mismatch", getOperatorString(op)); in binaryOpCommonCheck()
3223 error(loc, "Invalid operation for arrays", getOperatorString(op)); in binaryOpCommonCheck()
3229 error(loc, "array size mismatch", getOperatorString(op)); in binaryOpCommonCheck()
3285 error(loc, "undefined operation for structs containing arrays", getOperatorString(op)); in binaryOpCommonCheck()
3294 error(loc, "undefined operation for structs containing samplers", getOperatorString(op)); in binaryOpCommonCheck()
3525 binaryOpError(loc, getOperatorString(op), left->getCompleteString(), right->getCompleteString()); in addBinaryMath()
3537 binaryOpError(loc, getOperatorString(op), left->getCompleteString(), right->getCompleteString()); in addBinaryMathBooleanResult()
Dintermediate.h242 extern const char* getOperatorString(TOperator op);
DIntermediate.cpp193 const char* getOperatorString(TOperator op) { in getOperatorString() function