Home
last modified time | relevance | path

Searched refs:growAggregate (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
Dlocalintermediate.h39 TIntermAggregate* growAggregate(TIntermNode* left, TIntermNode* right, const TSourceLoc&);
DParseHelper.cpp1691 return intermediate.growAggregate(aggregateDeclaration, symbol, identifierLocation); in parseDeclarator()
1734 return intermediate.growAggregate(aggregateDeclaration, symbol, identifierLocation); in parseArrayDeclarator()
1763 return intermediate.growAggregate(aggregateDeclaration, intermNode, initLocation); in parseInitDeclarator()
1819 return intermediate.growAggregate(aggregateDeclaration, initNode, initLocation); in parseArrayInitDeclarator()
1898 prototype = intermediate.growAggregate(prototype, paramSymbol, location); in addFunctionPrototypeDeclaration()
1903 prototype = intermediate.growAggregate(prototype, paramSymbol, location); in addFunctionPrototypeDeclaration()
1931 …TIntermAggregate *aggregate = intermediate.growAggregate(functionPrototype, functionBody, location… in addFunctionDefinition()
2021 paramNodes = intermediate.growAggregate( in parseFunctionPrototype()
2032 paramNodes = intermediate.growAggregate(paramNodes, symbol, location); in parseFunctionPrototype()
2036 paramNodes = intermediate.growAggregate( in parseFunctionPrototype()
Dglslang.y359 $$.nodePair.node1 = context->intermediate.growAggregate($1.intermNode, $3, @2);
1452 $$ = context->intermediate.growAggregate($1, $2, @$);
1593 $$ = context->intermediate.growAggregate($1, $2, @$);
Dglslang_tab.cpp2585 …(yyval.interm).nodePair.node1 = context->intermediate.growAggregate((yyvsp[-2].interm).intermNode,… in yyparse()
4560 …(yyval.interm.intermAggregate) = context->intermediate.growAggregate((yyvsp[-1].interm.intermAggre… in yyparse()
4816 …(yyval.interm.intermNode) = context->intermediate.growAggregate((yyvsp[-1].interm.intermNode), (yy… in yyparse()
DIntermediate.cpp570 TIntermAggregate* TIntermediate::growAggregate(TIntermNode* left, TIntermNode* right, const TSource… in growAggregate() function in TIntermediate
643 TIntermTyped *commaAggregate = growAggregate(left, right, line); in addComma()