Lines Matching refs:aggregate
1083 …rseContext::functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *aggregate) in functionCallLValueErrorCheck() argument
1090 TIntermTyped *node = (aggregate->getSequence())[i]->getAsTyped(); in functionCallLValueErrorCheck()
1619 TIntermAggregate *aggregate = intermediate.makeAggregate(intermSymbol, identifierLoc); in parseInvariantDeclaration() local
1620 aggregate->setOp(EOpInvariantDeclaration); in parseInvariantDeclaration()
1621 return aggregate; in parseInvariantDeclaration()
1890 …TIntermAggregate *aggregate = intermediate.growAggregate(functionPrototype, functionBody, location… in addFunctionDefinition() local
1891 intermediate.setAggregateOperator(aggregate, EOpFunction, location); in addFunctionDefinition()
1892 aggregate->setName(function.getMangledName().c_str()); in addFunctionDefinition()
1893 aggregate->setType(function.getReturnType()); in addFunctionDefinition()
1897 aggregate->setOptimize(pragma().optimize); in addFunctionDefinition()
1898 aggregate->setDebug(pragma().debug); in addFunctionDefinition()
1901 aggregate->setEndLine(functionBody->getAsAggregate()->getEndLine()); in addFunctionDefinition()
1904 return aggregate; in addFunctionDefinition()
2467 …TIntermAggregate *aggregate = intermediate.makeAggregate(intermediate.addSymbol(symbolId, symbolNa… in addInterfaceBlock() local
2468 aggregate->setOp(EOpDeclaration); in addInterfaceBlock()
2471 return aggregate; in addInterfaceBlock()
3624 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, op, loc); in addFunctionCallOrMethod() local
3625 aggregate->setType(fnCandidate->getReturnType()); in addFunctionCallOrMethod()
3628 functionCallLValueErrorCheck(fnCandidate, aggregate); in addFunctionCallOrMethod()
3630 callNode = aggregate; in addFunctionCallOrMethod()
3680 … TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, EOpFunctionCall, loc); in addFunctionCallOrMethod() local
3681 aggregate->setType(fnCandidate->getReturnType()); in addFunctionCallOrMethod()
3687 aggregate->setUserDefined(); in addFunctionCallOrMethod()
3688 aggregate->setName(fnCandidate->getMangledName()); in addFunctionCallOrMethod()
3690 callNode = aggregate; in addFunctionCallOrMethod()
3692 functionCallLValueErrorCheck(fnCandidate, aggregate); in addFunctionCallOrMethod()