Home | History | Annotate | Download | only in compiler

Lines Matching refs:TIntermAggregate

190 class TIntermAggregate;
215 virtual TIntermAggregate* getAsAggregate() { return 0; }
421 class TIntermAggregate : public TIntermOperator {
423 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), pragmaTable(0) { }
424 TIntermAggregate(TOperator o) : TIntermOperator(o), pragmaTable(0) { }
425 ~TIntermAggregate() { delete pragmaTable; }
427 virtual TIntermAggregate* getAsAggregate() { return this; }
446 TIntermAggregate(const TIntermAggregate&); // disallow copy constructor
447 TIntermAggregate& operator=(const TIntermAggregate&); // disallow assignment operator
513 virtual bool visitAggregate(Visit visit, TIntermAggregate*) {return true;}