Lines Matching refs:TIntermOperator
459 class TIntermOperator : public TIntermTyped {
468 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {} in TIntermOperator() function
469 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {} in TIntermOperator() function
476 class TIntermBinary : public TIntermOperator {
478 TIntermBinary(TOperator o) : TIntermOperator(o) {} in TIntermBinary()
507 class TIntermUnary : public TIntermOperator {
509 TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0) {} in TIntermUnary()
510 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0) {} in TIntermUnary()
539 class TIntermAggregate : public TIntermOperator {
541 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false) { endLine = { 0, 0, 0, 0 }; } in TIntermAggregate()
542 …TIntermAggregate(TOperator o) : TIntermOperator(o), userDefined(false) { endLine = { 0, 0, 0, 0 };… in TIntermAggregate()