Home
last modified time | relevance | path

Searched refs:mCond (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/compiler/translator/
DIntermNode.h212 TIntermTyped *getCondition() { return mCond; } in getCondition()
217 void setCondition(TIntermTyped *condition) { mCond = condition; } in setCondition()
226 TIntermTyped *mCond; // loop exit condition variable
DIntermNode.cpp226 return (mInit ? 1 : 0) + (mCond ? 1 : 0) + (mExpr ? 1 : 0) + (mBody ? 1 : 0); in getChildCount()
238 if (mCond) in getChildNode()
240 children[childIndex] = mCond; in getChildNode()
261 REPLACE_IF_IS(mCond, TIntermTyped, original, replacement); in replaceChildNode()
1452 : mType(type), mInit(init), mCond(cond), mExpr(expr), mBody(body) in TIntermLoop()
1466 node.mCond->deepCopy(), in TIntermLoop()