Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DParseHelper.h52 mCurrentFunctionType(nullptr), in TParseContext()
101 const TType *getCurrentFunctionType() const { return mCurrentFunctionType; } in getCurrentFunctionType()
104 mCurrentFunctionType = currentFunctionType; in setCurrentFunctionType()
264 …const TType *mCurrentFunctionType; // the return type of the function that's currently being pars… variable
DParseHelper.cpp1884 if(mCurrentFunctionType->getBasicType() != EbtVoid && !mFunctionReturnsValue) in addFunctionDefinition()
1955 mCurrentFunctionType = &(prevDec->getReturnType()); in parseFunctionPrototype()
3494 if(mCurrentFunctionType->getBasicType() != EbtVoid) in addBranch()
3511 if(mCurrentFunctionType->getBasicType() == EbtVoid) in addBranch()
3516 else if(*mCurrentFunctionType != returnValue->getType()) in addBranch()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DParseContext.cpp204 mCurrentFunctionType(nullptr), in TParseContext()
3904 if (mCurrentFunctionType->getBasicType() != EbtVoid && !mFunctionReturnsValue) in addFunctionDefinition()
3937 mCurrentFunctionType = &(function->getReturnType()); in parseFunctionDefinitionHeader()
6454 if (mCurrentFunctionType->getBasicType() != EbtVoid) in addBranch()
6481 if (mCurrentFunctionType->getBasicType() == EbtVoid) in addBranch()
6485 else if (*mCurrentFunctionType != expression->getType()) in addBranch()
DParseContext.h675 *mCurrentFunctionType; // the return type of the function that's currently being parsed variable