Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/compiler/
DParseHelper.cpp1123 bool TParseContext::functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *ag… in functionCallLValueErrorCheck() argument
1125 for(size_t i = 0; i < fnCandidate->getParamCount(); ++i) in functionCallLValueErrorCheck()
1127 TQualifier qual = fnCandidate->getParam(i).type->getQualifier(); in functionCallLValueErrorCheck()
3667 const TFunction *fnCandidate; in addFunctionCallOrMethod() local
3669 fnCandidate = findFunction(loc, fnCall, &builtIn); in addFunctionCallOrMethod()
3670 if(fnCandidate) in addFunctionCallOrMethod()
3675 if(builtIn && !fnCandidate->getExtension().empty() && in addFunctionCallOrMethod()
3676 extensionErrorCheck(loc, fnCandidate->getExtension())) in addFunctionCallOrMethod()
3680 op = fnCandidate->getBuiltInOp(); in addFunctionCallOrMethod()
3686 if(fnCandidate->getParamCount() == 1) in addFunctionCallOrMethod()
[all …]
DParseHelper.h143 bool functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *);