Searched refs:mExpr (Results 1 – 2 of 2) sorted by relevance
213 TIntermTyped *getExpression() { return mExpr; } in getExpression()218 void setExpression(TIntermTyped *expression) { mExpr = expression; } in setExpression()227 TIntermTyped *mExpr; // for-loop expression variable
226 return (mInit ? 1 : 0) + (mCond ? 1 : 0) + (mExpr ? 1 : 0) + (mBody ? 1 : 0); in getChildCount()243 if (mExpr) in getChildNode()245 children[childIndex] = mExpr; in getChildNode()262 REPLACE_IF_IS(mExpr, TIntermTyped, original, replacement); in replaceChildNode()1452 : mType(type), mInit(init), mCond(cond), mExpr(expr), mBody(body) in TIntermLoop()1467 node.mExpr->deepCopy(), in TIntermLoop()