/external/chromium_org/third_party/angle/src/compiler/ |
localintermediate.h | 29 TIntermTyped* addConversion(TOperator, const TType&, TIntermTyped*); 30 TIntermTyped* addBinaryMath(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc&, TSymbolTable&); 31 TIntermTyped* addAssign(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc&); 32 TIntermTyped* addIndex(TOperator op, TIntermTyped* base, TIntermTyped* index, const TSourceLoc&); 33 TIntermTyped* addUnaryMath(TOperator op, TIntermNode* child, const TSourceLoc&, TSymbolTable&); 36 TIntermAggregate* setAggregateOperator(TIntermNode*, TOperator, const TSourceLoc&); 42 bool parseConstTree(const TSourceLoc&, TIntermNode*, ConstantUnion*, TOperator, TSymbolTable&, TType, bool singleConstantParam = false); 44 TIntermBranch* addBranch(TOperator, const TSourceLoc&); 45 TIntermBranch* addBranch(TOperator, TIntermTyped*, const TSourceLoc&);
|
BuiltInFunctionEmulator.h | 28 bool SetFunctionCalled(TOperator op, const TType& param); 30 TOperator op, const TType& param1, const TType& param2); 81 TBuiltInFunction IdentifyFunction(TOperator op, const TType& param); 83 TOperator op, const TType& param1, const TType& param2);
|
ForLoopUnroll.h | 17 TOperator op;
|
RenameFunction.h | 25 TOperator op = node->getOp();
|
intermediate.h | 29 enum TOperator { 190 extern const char* getOperatorString(TOperator op); 332 TIntermBranch(TOperator op, TIntermTyped* e) : 340 TOperator getFlowOp() { return flowOp; } 344 TOperator flowOp; 395 TIntermTyped* fold(TOperator, TIntermTyped*, TInfoSink&); 406 TOperator getOp() const { return op; } 407 void setOp(TOperator o) { op = o; } 415 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {} 416 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {} [all...] |
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)
|
SymbolTable.h | 131 TFunction(TOperator o) : 136 TFunction(const TString *name, TType& retType, TOperator tOp = EOpNull) : 160 void relateToOperator(TOperator o) { op = o; } 161 TOperator getBuiltInOp() const { return op; } 178 TOperator op; 227 void relateToOperator(const char* name, TOperator op); 331 void relateToOperator(const char* name, TOperator op) {
|
ParseContext.h | 85 bool constructorErrorCheck(const TSourceLoc& line, TIntermNode*, TFunction&, TOperator, TType*); 112 TIntermTyped* addConstructor(TIntermNode*, const TType*, TOperator, TFunction*, const TSourceLoc&); 115 TIntermTyped* constructBuiltIn(const TType*, TOperator, TIntermNode*, const TSourceLoc&, bool subset);
|
parseConst.cpp | 15 TConstTraverser(ConstantUnion* cUnion, bool singleConstParam, TOperator constructType, TInfoSink& sink, TSymbolTable& symTable, TType& t) 44 TOperator constructorType; 233 bool TIntermediate::parseConstTree(const TSourceLoc& line, TIntermNode* root, ConstantUnion* unionArray, TOperator constructorType, TSymbolTable& symbolTable, TType t, bool singleConstantParam)
|
glslang_tab.h | 169 TOperator op;
|
Intermediate.cpp | 27 const char* getOperatorString(TOperator op) 149 TIntermTyped* TIntermediate::addBinaryMath(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc& line, TSymbolTable& symbolTable) 233 TIntermTyped* TIntermediate::addAssign(TOperator op, TIntermTyped* left, TIntermTyped* right, const TSourceLoc& line) 261 TIntermTyped* TIntermediate::addIndex(TOperator op, TIntermTyped* base, TIntermTyped* index, const TSourceLoc& line) 278 TIntermTyped* TIntermediate::addUnaryMath(TOperator op, TIntermNode* childNode, const TSourceLoc& line, TSymbolTable& symbolTable) 373 TIntermAggregate* TIntermediate::setAggregateOperator(TIntermNode* node, TOperator op, const TSourceLoc& line) 409 TIntermTyped* TIntermediate::addConversion(TOperator op, const TType& type, TIntermTyped* node) 478 TOperator newOp = EOpNull; 700 TIntermBranch* TIntermediate::addBranch(TOperator branchOp, const TSourceLoc& line) 705 TIntermBranch* TIntermediate::addBranch(TOperator branchOp, TIntermTyped* expression, const TSourceLoc& line [all...] |
ForLoopUnroll.cpp | 171 TOperator op = EOpNull;
|
SymbolTable.cpp | 183 void TSymbolTableLevel::relateToOperator(const char* name, TOperator op)
|
ParseContext.cpp | 470 bool TParseContext::constructorErrorCheck(const TSourceLoc& line, TIntermNode* node, TFunction& function, TOperator op, TType* type) [all...] |
ValidateLimitations.cpp | 364 TOperator op = EOpNull;
|
OutputHLSL.cpp | [all...] |
glslang.y | 68 TOperator op; 388 TOperator op = fnCall->getBuiltInOp(); 544 TOperator op = EOpNull; [all...] |
glslang_tab.cpp | 251 TOperator op; [all...] |
/external/chromium_org/third_party/angle/src/compiler/depgraph/ |
DependencyGraphBuilder.cpp | 96 TOperator op = intermBinary->getOp();
|