Lines Matching refs:paramNode
3524 TIntermTyped *TParseContext::addFunctionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIn… in addFunctionCallOrMethod() argument
3540 else if(paramNode != nullptr) in addFunctionCallOrMethod()
3565 if(!constructorErrorCheck(loc, paramNode, *fnCall, op, &type)) in addFunctionCallOrMethod()
3570 callNode = addConstructor(paramNode, &type, op, fnCall, loc); in addFunctionCallOrMethod()
3608 TIntermNode *operand = paramNode->getAsAggregate()->getSequence()[0]; in addFunctionCallOrMethod()
3615 << static_cast<TIntermTyped*>(paramNode)->getCompleteString(); in addFunctionCallOrMethod()
3617 error(paramNode->getLine(), " wrong operand type", "Internal Error", extraInfo.c_str()); in addFunctionCallOrMethod()
3624 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, op, loc); in addFunctionCallOrMethod()
3635 TIntermSequence ¶meters = paramNode->getAsAggregate()->getSequence(); in addFunctionCallOrMethod()
3657 TIntermSequence ¶meters = paramNode->getAsAggregate()->getSequence(); in addFunctionCallOrMethod()
3690 … TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, EOpFunctionCall, loc); in addFunctionCallOrMethod()