Searched refs:fnCall (Results 1 – 4 of 4) sorted by relevance
/external/angle/src/compiler/translator/ |
D | ParseContext.h | 186 void functionCallRValueLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *fnCall); 454 TIntermTyped *addFunctionCallOrMethod(TFunctionLookup *fnCall, const TSourceLoc &loc); 625 TIntermTyped *addMethod(TFunctionLookup *fnCall, const TSourceLoc &loc); 626 TIntermTyped *addConstructor(TFunctionLookup *fnCall, const TSourceLoc &line); 627 TIntermTyped *addNonConstructorFunctionCall(TFunctionLookup *fnCall, const TSourceLoc &loc);
|
D | ParseContext.cpp | 2029 TIntermAggregate *fnCall) in functionCallRValueLValueErrorCheck() argument 2034 TIntermTyped *argument = (*(fnCall->getSequence()))[i]->getAsTyped(); in functionCallRValueLValueErrorCheck() 2046 fnCall->functionName()); in functionCallRValueLValueErrorCheck() 2057 fnCall->functionName()); in functionCallRValueLValueErrorCheck() 4165 TIntermTyped *TParseContext::addConstructor(TFunctionLookup *fnCall, const TSourceLoc &line) in addConstructor() argument 4167 TType type = fnCall->constructorType(); in addConstructor() 4168 TIntermSequence &arguments = fnCall->arguments(); in addConstructor() 6813 TIntermTyped *TParseContext::addFunctionCallOrMethod(TFunctionLookup *fnCall, const TSourceLoc &loc) in addFunctionCallOrMethod() argument 6815 if (fnCall->thisNode() != nullptr) in addFunctionCallOrMethod() 6817 return addMethod(fnCall, loc); in addFunctionCallOrMethod() [all …]
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.cpp | 2101 …ctor(TIntermNode* arguments, const TType* type, TOperator op, TFunction* fnCall, const TSourceLoc … in addConstructor() argument 3524 TIntermTyped *TParseContext::addFunctionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIn… in addFunctionCallOrMethod() argument 3527 TOperator op = fnCall->getBuiltInOp(); in addFunctionCallOrMethod() 3535 if(fnCall->getName() != "length") in addFunctionCallOrMethod() 3537 error(loc, "invalid method", fnCall->getName().c_str()); in addFunctionCallOrMethod() 3565 if(!constructorErrorCheck(loc, paramNode, *fnCall, op, &type)) in addFunctionCallOrMethod() 3570 callNode = addConstructor(paramNode, &type, op, fnCall, loc); in addFunctionCallOrMethod() 3586 fnCandidate = findFunction(loc, fnCall, &builtIn); in addFunctionCallOrMethod() 3715 delete fnCall; in addFunctionCallOrMethod()
|
D | ParseHelper.h | 238 …TIntermTyped *addFunctionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *this…
|