Lines Matching refs:TIntermAggregate
245 class TIntermAggregate; variable
279 virtual TIntermAggregate* getAsAggregate() { return 0; } in getAsAggregate()
539 class TIntermAggregate : public TIntermOperator {
541 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false) { endLine = { 0, 0, 0, 0 }; } in TIntermAggregate() function
542 …TIntermAggregate(TOperator o) : TIntermOperator(o), userDefined(false) { endLine = { 0, 0, 0, 0 };… in TIntermAggregate() function
543 ~TIntermAggregate() { } in ~TIntermAggregate()
545 TIntermAggregate* getAsAggregate() override { return this; } in getAsAggregate()
596 TIntermAggregate(const TIntermAggregate&); // disallow copy constructor
597 TIntermAggregate& operator=(const TIntermAggregate&); // disallow assignment operator
640 TIntermSwitch(TIntermTyped *init, TIntermAggregate *statementList) in TIntermSwitch()
649 TIntermAggregate *getStatementList() { return mStatementList; } in getStatementList()
650 void setStatementList(TIntermAggregate *statementList) { mStatementList = statementList; } in setStatementList()
654 TIntermAggregate *mStatementList;
710 virtual bool visitAggregate(Visit visit, TIntermAggregate*) {return true;} in visitAggregate() argument
747 ParentBlock(TIntermAggregate *nodeIn, TIntermSequence::size_type posIn) in ParentBlock()
751 TIntermAggregate *node;