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.cpp3114 unaryOpError(loc, getOperatorString(op), child->getCompleteString()); in addUnaryMath()
3123 if(lValueErrorCheck(loc, getOperatorString(op), child)) in addUnaryMathLValue()
3134 error(loc, "Invalid operation for arrays", getOperatorString(op)); in binaryOpCommonCheck()
3140 error(loc, "array / non-array mismatch", getOperatorString(op)); in binaryOpCommonCheck()
3152 error(loc, "Invalid operation for arrays", getOperatorString(op)); in binaryOpCommonCheck()
3158 error(loc, "array size mismatch", getOperatorString(op)); in binaryOpCommonCheck()
3214 error(loc, "undefined operation for structs containing arrays", getOperatorString(op)); in binaryOpCommonCheck()
3223 error(loc, "undefined operation for structs containing samplers", getOperatorString(op)); in binaryOpCommonCheck()
3454 binaryOpError(loc, getOperatorString(op), left->getCompleteString(), right->getCompleteString()); in addBinaryMath()
3466 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