Home
last modified time | relevance | path

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

/external/angle/src/compiler/translator/tree_util/
DReplaceVariable.h109 void replaceFunctionCallArg(const TIntermNode *oldArg, TIntermTyped *newArg) in replaceFunctionCallArg() argument
111 ASSERT(mReplacedFunctionCallArgs.top().count(oldArg) == 0); in replaceFunctionCallArg()
112 mReplacedFunctionCallArgs.top()[oldArg] = newArg; in replaceFunctionCallArg()
114 TIntermTyped *getFunctionCallArgReplacement(const TIntermNode *oldArg) const in getFunctionCallArgReplacement() argument
116 ASSERT(mReplacedFunctionCallArgs.top().count(oldArg) != 0); in getFunctionCallArgReplacement()
117 return mReplacedFunctionCallArgs.top().at(oldArg); in getFunctionCallArgReplacement()