Searched refs:oldArg (Results 1 – 1 of 1) sorted by relevance
109 void replaceFunctionCallArg(const TIntermNode *oldArg, TIntermTyped *newArg) in replaceFunctionCallArg() argument111 ASSERT(mReplacedFunctionCallArgs.top().count(oldArg) == 0); in replaceFunctionCallArg()112 mReplacedFunctionCallArgs.top()[oldArg] = newArg; in replaceFunctionCallArg()114 TIntermTyped *getFunctionCallArgReplacement(const TIntermNode *oldArg) const in getFunctionCallArgReplacement() argument116 ASSERT(mReplacedFunctionCallArgs.top().count(oldArg) != 0); in getFunctionCallArgReplacement()117 return mReplacedFunctionCallArgs.top().at(oldArg); in getFunctionCallArgReplacement()