Lines Matching refs:intermAggregate
86 TIntermAggregate* intermAggregate;
198 %type <interm.intermAggregate> statement_list compound_statement compound_statement_no_new_scope
611 TIntermAggregate *aggNode = $1.intermAggregate;
808 $$.intermAggregate = context->parseDeclarator($$.type, $1.intermAggregate, @3, *$3.string);
812 $$.intermAggregate = context->parseArrayDeclarator($$.type, $1.intermAggregate, @3, *$3.string, @4, $5);
817 $$.intermAggregate = context->parseArrayInitDeclarator($$.type, $1.intermAggregate, @3, *$3.string, @4, nullptr, @6, $7);
822 $$.intermAggregate = context->parseArrayInitDeclarator($$.type, $1.intermAggregate, @3, *$3.string, @4, $5, @7, $8);
826 $$.intermAggregate = context->parseInitDeclarator($$.type, $1.intermAggregate, @3, *$3.string, @4, $5);
833 $$.intermAggregate = context->parseSingleDeclaration($$.type, @1, "");
837 $$.intermAggregate = context->parseSingleDeclaration($$.type, @2, *$2.string);
841 $$.intermAggregate = context->parseSingleArrayDeclaration($$.type, @2, *$2.string, @3, $4);
846 $$.intermAggregate = context->parseSingleArrayInitDeclaration($$.type, @2, *$2.string, @3, nullptr, @5, $6);
851 $$.intermAggregate = context->parseSingleArrayInitDeclaration($$.type, @2, *$2.string, @3, $4, @6, $7);
855 $$.intermAggregate = context->parseSingleInitDeclaration($$.type, @2, *$2.string, @3, $4);
859 $$.intermAggregate = context->parseInvariantDeclaration(@1, @2, $2.string, $2.symbol);
1619 context->parseFunctionPrototype(@1, $1.function, &$1.intermAggregate);
1622 $$ = context->addFunctionDefinition(*($1.function), $1.intermAggregate, $3, @1);