Searched refs:mCond (Results 1 – 2 of 2) sorted by relevance
210 TIntermTyped *getCondition() { return mCond; } in getCondition()215 void setCondition(TIntermTyped *condition) { mCond = condition; } in setCondition()224 TIntermTyped *mCond; // loop exit condition variable
231 return (mInit ? 1 : 0) + (mCond ? 1 : 0) + (mExpr ? 1 : 0) + (mBody ? 1 : 0); in getChildCount()243 if (mCond) in getChildNode()245 children[childIndex] = mCond; in getChildNode()266 REPLACE_IF_IS(mCond, TIntermTyped, original, replacement); in replaceChildNode()1373 : mType(type), mInit(init), mCond(cond), mExpr(expr), mBody(body) in TIntermLoop()1387 node.mCond->deepCopy(), in TIntermLoop()