Searched refs:TIntermOperator (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/angle/src/compiler/ |
D | intermediate.h | 404 class TIntermOperator : public TIntermTyped { 415 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {} in TIntermOperator() function 416 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {} in TIntermOperator() function 423 class TIntermBinary : public TIntermOperator { 425 TIntermBinary(TOperator o) : TIntermOperator(o), addIndexClamp(false) {} in TIntermBinary() 454 class TIntermUnary : public TIntermOperator { 456 …TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0), useEmulatedFunction(false… in TIntermUnary() 457 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0), useEmulatedFunction(false) {} in TIntermUnary() 487 class TIntermAggregate : public TIntermOperator { 489 … TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false), useEmulatedFunction(false) { } in TIntermAggregate() [all …]
|
D | ValidateLimitations.h | 46 bool validateOperation(TIntermOperator* node, TIntermNode* operand);
|
D | ValidateLimitations.cpp | 457 bool ValidateLimitations::validateOperation(TIntermOperator* node, in validateOperation()
|
D | Intermediate.cpp | 807 bool TIntermOperator::isAssignment() const in isAssignment() 832 bool TIntermOperator::isConstructor() const in isConstructor()
|