Lines Matching refs:deepCopy
273 : TIntermBranch(node.mFlowOp, node.mExpression->deepCopy()) in TIntermBranch()
414 mStatements.push_back(node->deepCopy()); in TIntermBlock()
971 TIntermCase::TIntermCase(const TIntermCase &node) : TIntermCase(node.mCondition->deepCopy()) {} in TIntermCase()
1036 TIntermTyped *argCopy = typedArg->deepCopy(); in TIntermAggregate()
1052 TIntermTyped *operandCopy = node.mOperand->deepCopy(); in TIntermSwizzle()
1062 TIntermTyped *leftCopy = node.mLeft->deepCopy(); in TIntermBinary()
1063 TIntermTyped *rightCopy = node.mRight->deepCopy(); in TIntermBinary()
1074 TIntermTyped *operandCopy = node.mOperand->deepCopy(); in TIntermUnary()
1081 TIntermTyped *conditionCopy = node.mCondition->deepCopy(); in TIntermTernary()
1082 TIntermTyped *trueCopy = node.mTrueExpression->deepCopy(); in TIntermTernary()
1083 TIntermTyped *falseCopy = node.mFalseExpression->deepCopy(); in TIntermTernary()
1348 : TIntermGlobalQualifierDeclaration(static_cast<TIntermSymbol *>(node.mSymbol->deepCopy()), in TIntermGlobalQualifierDeclaration()
1386 node.mInit->deepCopy(), in TIntermLoop()
1387 node.mCond->deepCopy(), in TIntermLoop()
1388 node.mExpr->deepCopy(), in TIntermLoop()
1389 node.mBody->deepCopy()) in TIntermLoop()
1404 : TIntermIfElse(node.mCondition->deepCopy(), in TIntermIfElse()
1405 node.mTrueBlock->deepCopy(), in TIntermIfElse()
1406 node.mFalseBlock ? node.mFalseBlock->deepCopy() : nullptr) in TIntermIfElse()
1417 : TIntermSwitch(node.mInit->deepCopy(), node.mStatementList->deepCopy()) in TIntermSwitch()