/external/chromium_org/third_party/angle/src/compiler/translator/ |
localintermediate.h | 27 TIntermTyped* addConversion(TOperator, const TType&, TIntermTyped*); 28 TIntermTyped* addBinaryMath(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc&); 29 TIntermTyped* addAssign(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc&); 30 TIntermTyped* addIndex(TOperator op, TIntermTyped* base, TIntermTyped* index, const TSourceLoc&); 31 TIntermTyped* addUnaryMath(TOperator op, TIntermNode* child, const TSourceLoc&); 34 TIntermAggregate* setAggregateOperator(TIntermNode*, TOperator, const TSourceLoc&); 40 bool parseConstTree(const TSourceLoc&, TIntermNode*, ConstantUnion*, TOperator, TType, bool singleConstantParam = false); 42 TIntermBranch* addBranch(TOperator, const TSourceLoc&); 43 TIntermBranch* addBranch(TOperator, TIntermTyped*, const TSourceLoc&);
|
BuiltInFunctionEmulator.h | 26 bool SetFunctionCalled(TOperator op, const TType& param); 28 TOperator op, const TType& param1, const TType& param2); 79 TBuiltInFunction IdentifyFunction(TOperator op, const TType& param); 81 TOperator op, const TType& param1, const TType& param2);
|
RenameFunction.h | 25 TOperator op = node->getOp();
|
SymbolTable.h | 181 TFunction(TOperator o) 188 TFunction(const TString *name, TType &retType, TOperator tOp = EOpNull) 226 void relateToOperator(TOperator o) 230 TOperator getBuiltInOp() const 260 TOperator op; 296 void relateToOperator(const char *name, TOperator op); 387 void relateToOperator(ESymbolLevel level, const char *name, TOperator op)
|
BuiltInFunctionEmulator.cpp | 280 TOperator op, const TType& param) 287 TOperator op, const TType& param1, const TType& param2) 328 TOperator op, const TType& param) 355 TOperator op, const TType& param1, const TType& param2)
|
LoopInfo.h | 41 TOperator mOp;
|
intermediate.h | 30 enum TOperator { 202 extern const char* getOperatorString(TOperator op); 355 TIntermBranch(TOperator op, TIntermTyped* e) : 363 TOperator getFlowOp() { return flowOp; } 369 TOperator flowOp; 442 TIntermTyped* fold(TOperator, TIntermTyped*, TInfoSink&); 455 TOperator getOp() const { return op; } 456 void setOp(TOperator o) { op = o; } 464 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {} 465 TIntermOperator(TOperator o, const TType& t) : TIntermTyped(t), op(o) { [all...] |
RewriteElseBlocks.cpp | 23 TIntermBinary *MakeNewBinary(TOperator op, TIntermTyped *left, TIntermTyped *right, const TType &resultType) 32 TIntermUnary *MakeNewUnary(TOperator op, TIntermTyped *operand)
|
parseConst.cpp | 15 TConstTraverser(ConstantUnion* cUnion, bool singleConstParam, TOperator constructType, TInfoSink& sink, TType& t) 44 TOperator constructorType; 239 bool TIntermediate::parseConstTree(const TSourceLoc& line, TIntermNode* root, ConstantUnion* unionArray, TOperator constructorType, TType t, bool singleConstantParam)
|
Intermediate.cpp | 28 const char* getOperatorString(TOperator op) 159 TIntermTyped* TIntermediate::addBinaryMath(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc& line) 242 TIntermTyped* TIntermediate::addAssign(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc& line) 270 TIntermTyped* TIntermediate::addIndex(TOperator op, TIntermTyped* base, TIntermTyped* index, const TSourceLoc& line) 287 TIntermTyped* TIntermediate::addUnaryMath(TOperator op, TIntermNode* childNode, const TSourceLoc& line) 384 TIntermAggregate* TIntermediate::setAggregateOperator(TIntermNode* node, TOperator op, const TSourceLoc& line) 420 TIntermTyped* TIntermediate::addConversion(TOperator op, const TType& type, TIntermTyped* node) 490 TOperator newOp = EOpNull; 726 TIntermBranch* TIntermediate::addBranch(TOperator branchOp, const TSourceLoc& line) 731 TIntermBranch* TIntermediate::addBranch(TOperator branchOp, TIntermTyped* expression, const TSourceLoc& line [all...] |
ParseContext.h | 92 bool constructorErrorCheck(const TSourceLoc& line, TIntermNode*, TFunction&, TOperator, TType*); 134 TIntermTyped* addConstructor(TIntermNode*, const TType*, TOperator, TFunction*, const TSourceLoc&); 137 TIntermTyped* constructBuiltIn(const TType*, TOperator, TIntermNode*, const TSourceLoc&, bool subset);
|
glslang_tab.h | 202 TOperator op;
|
LoopInfo.cpp | 33 TOperator op = EOpNull;
|
SymbolTable.cpp | 71 void TSymbolTableLevel::relateToOperator(const char *name, TOperator op)
|
ValidateLimitations.cpp | 307 TOperator op = EOpNull;
|
ParseContext.cpp | 468 bool TParseContext::constructorErrorCheck(const TSourceLoc& line, TIntermNode* node, TFunction& function, TOperator op, TType* type) [all...] |
OutputHLSL.cpp | [all...] |
glslang.y | 68 TOperator op; 338 TOperator op = fnCall->getBuiltInOp(); [all...] |
glslang_tab.cpp | 285 TOperator op; [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/ |
DependencyGraphBuilder.cpp | 96 TOperator op = intermBinary->getOp();
|