Home
last modified time | relevance | path

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

/aosp_15_r20/external/angle/src/compiler/translator/
H A DIntermNode.cpp1064 return 1 + (mTrueBlock ? 1 : 0) + (mFalseBlock ? 1 : 0); in getChildCount()
1073 if (mTrueBlock && index == 1) in getChildNode()
1075 return mTrueBlock; in getChildNode()
1083 REPLACE_IF_IS(mTrueBlock, getAsBlock, original, replacement); in replaceChildNode()
1635 : TIntermNode(), mCondition(cond), mTrueBlock(trueB), mFalseBlock(falseB) in TIntermIfElse()
1647 node.mTrueBlock->deepCopy(), in TIntermIfElse()
H A DIntermNode.h932 TIntermBlock *getTrueBlock() const { return mTrueBlock; } in getTrueBlock()
939 TIntermBlock *mTrueBlock; variable