/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | RemoveDynamicIndexing.cpp | 199 TIntermBranch *returnNode = new TIntermBranch(EOpReturn, nullptr); in GetIndexFunctionDefinition() 204 TIntermBranch *returnNode = new TIntermBranch(EOpReturn, indexNode); in GetIndexFunctionDefinition() 212 TIntermBranch *breakNode = new TIntermBranch(EOpBreak, nullptr); in GetIndexFunctionDefinition() 236 TIntermBranch *returnNode = new TIntermBranch(EOpReturn, nullptr); in GetIndexFunctionDefinition() 245 TIntermBranch *returnFirstNode = new TIntermBranch(EOpReturn, indexFirstNode); in GetIndexFunctionDefinition() 248 TIntermBranch *returnLastNode = new TIntermBranch(EOpReturn, indexLastNode); in GetIndexFunctionDefinition()
|
D | AddDefaultReturnStatements.cpp | 31 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement() 50 TIntermBranch *branch = new TIntermBranch(EOpReturn, CreateZeroNode(returnType)); in AddDefaultReturnStatements()
|
D | RemoveSwitchFallThrough.cpp | 45 bool visitBranch(Visit, TIntermBranch *node) override; 70 TIntermBranch *finalBreak = new TIntermBranch(EOpBreak, nullptr); in removeFallThrough() 232 TIntermBranch *lastStatementAsBranch = node->getSequence()->back()->getAsBranchNode(); in DoesBlockAlwaysBreak() 254 bool RemoveSwitchFallThroughTraverser::visitBranch(Visit, TIntermBranch *node) in visitBranch()
|
D | ArrayReturnValueToOutParameter.cpp | 37 bool visitBranch(Visit visit, TIntermBranch *node) override; 177 bool ArrayReturnValueToOutParameterTraverser::visitBranch(Visit visit, TIntermBranch *node) in visitBranch() 196 TIntermBranch *replacementBranch = new TIntermBranch(EOpReturn, nullptr); in visitBranch()
|
D | RewriteDoWhile.cpp | 92 TIntermBranch *breakStatement = new TIntermBranch(EOpBreak, nullptr); in visitBlock()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | RemoveDynamicIndexing.cpp | 209 TIntermBranch *returnNode = new TIntermBranch(EOpReturn, nullptr); in GetIndexFunctionDefinition() 214 TIntermBranch *returnNode = new TIntermBranch(EOpReturn, indexNode); in GetIndexFunctionDefinition() 222 TIntermBranch *breakNode = new TIntermBranch(EOpBreak, nullptr); in GetIndexFunctionDefinition() 246 TIntermBranch *returnNode = new TIntermBranch(EOpReturn, nullptr); in GetIndexFunctionDefinition() 255 TIntermBranch *returnFirstNode = new TIntermBranch(EOpReturn, indexFirstNode); in GetIndexFunctionDefinition() 258 TIntermBranch *returnLastNode = new TIntermBranch(EOpReturn, indexLastNode); in GetIndexFunctionDefinition()
|
D | PruneNoOps.cpp | 53 bool visitBranch(Visit visit, TIntermBranch *node) override; 199 bool PruneNoOpsTraverser::visitBranch(Visit visit, TIntermBranch *node) in visitBranch()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/d3d/ |
D | AddDefaultReturnStatements.cpp | 32 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement() 51 TIntermBranch *branch = new TIntermBranch(EOpReturn, CreateZeroNode(returnType)); in AddDefaultReturnStatements()
|
D | RemoveSwitchFallThrough.cpp | 45 bool visitBranch(Visit, TIntermBranch *node) override; 70 TIntermBranch *finalBreak = new TIntermBranch(EOpBreak, nullptr); in removeFallThrough() 232 TIntermBranch *lastStatementAsBranch = node->getSequence()->back()->getAsBranchNode(); in DoesBlockAlwaysBreak() 254 bool RemoveSwitchFallThroughTraverser::visitBranch(Visit, TIntermBranch *node) in visitBranch()
|
D | ArrayReturnValueToOutParameter.cpp | 39 bool visitBranch(Visit visit, TIntermBranch *node) override; 180 bool ArrayReturnValueToOutParameterTraverser::visitBranch(Visit visit, TIntermBranch *node) in visitBranch() 199 TIntermBranch *replacementBranch = new TIntermBranch(EOpReturn, nullptr); in visitBranch()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/ |
D | EarlyFragmentTestsOptimization.cpp | 30 bool visitBranch(Visit visit, TIntermBranch *node) override; 56 bool CheckEFTOptimizationTraverser::visitBranch(Visit visit, TIntermBranch *node) in visitBranch()
|
/third_party/glslang/glslang/MachineIndependent/ |
D | propagateNoContraction.cpp | 78 typedef std::unordered_set<glslang::TIntermBranch*> ReturnBranchNodeSet; 247 bool visitBranch(glslang::TVisit, glslang::TIntermBranch*) override; 276 std::unordered_set<glslang::TIntermBranch*>* precise_return_nodes) in TSymbolDefinitionCollectingTraverser() 316 glslang::TIntermBranch* node) in visitBranch() 650 void propagateNoContractionInReturnNode(glslang::TIntermBranch* return_node) in propagateNoContractionInReturnNode() 829 glslang::TIntermBranch* precise_return_node = *precise_return_nodes.begin(); in PropagateNoContraction()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | intermediate.h | 253 class TIntermBranch; variable 285 virtual TIntermBranch* getAsBranchNode() { return 0; } in getAsBranchNode() 389 class TIntermBranch : public TIntermNode { 391 TIntermBranch(TOperator op, TIntermTyped* e) : in TIntermBranch() function 395 virtual TIntermBranch* getAsBranchNode() { return this; } in getAsBranchNode() 712 virtual bool visitBranch(Visit visit, TIntermBranch*) {return true;} in visitBranch() argument
|
D | localintermediate.h | 51 TIntermBranch* addBranch(TOperator, const TSourceLoc&); 52 TIntermBranch* addBranch(TOperator, TIntermTyped*, const TSourceLoc&);
|
D | parseConst.cpp | 46 bool visitBranch(Visit visit, TIntermBranch*); 227 bool TConstTraverser::visitBranch(Visit visit, TIntermBranch* node) in visitBranch()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IntermNode.h | 58 class TIntermBranch; variable 107 virtual TIntermBranch *getAsBranchNode() { return nullptr; } in getAsBranchNode() 254 class TIntermBranch : public TIntermNode 257 TIntermBranch(TOperator op, TIntermTyped *e) : mFlowOp(op), mExpression(e) {} in TIntermBranch() function 259 TIntermBranch *getAsBranchNode() override { return this; } in getAsBranchNode() 269 virtual TIntermBranch *deepCopy() const override { return new TIntermBranch(*this); } in deepCopy() 276 TIntermBranch(const TIntermBranch &);
|
D | ValidateSwitch.cpp | 41 bool visitBranch(Visit, TIntermBranch *) override; 273 bool ValidateSwitch::visitBranch(Visit, TIntermBranch *) in visitBranch() argument
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/apple/ |
D | RewriteDoWhile.cpp | 93 TIntermBranch *breakStatement = new TIntermBranch(EOpBreak, nullptr); in visitBlock()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | AsNode.h | 194 struct AsNode<TIntermBranch> 196 static ANGLE_INLINE TIntermBranch *exec(TIntermNode *node)
|
D | IntermRebuild.h | 226 virtual PreResult visitBranchPre(TIntermBranch &node); 245 virtual PostResult visitBranchPost(TIntermBranch &node); 306 TIntermNode *traverseBranchChildren(TIntermBranch &node);
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
D | IntermRebuild.h | 226 virtual PreResult visitBranchPre(TIntermBranch &node); 245 virtual PostResult visitBranchPost(TIntermBranch &node); 306 TIntermNode *traverseBranchChildren(TIntermBranch &node);
|
/third_party/glslang/glslang/Include/ |
D | intermediate.h | 1068 class TIntermBranch; variable 1099 virtual glslang::TIntermBranch* getAsBranchNode() { return nullptr; } in getAsBranchNode() 1112 virtual const glslang::TIntermBranch* getAsBranchNode() const { return nullptr; } in getAsBranchNode() 1247 class TIntermBranch : public TIntermNode { 1249 TIntermBranch(TOperator op, TIntermTyped* e) : in TIntermBranch() function 1252 virtual TIntermBranch* getAsBranchNode() { return this; } in getAsBranchNode() 1253 virtual const TIntermBranch* getAsBranchNode() const { return this; } in getAsBranchNode() 1802 virtual bool visitBranch(TVisit, TIntermBranch*) { return true; } in visitBranch() argument
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ValidateSwitch.cpp | 41 bool visitBranch(Visit, TIntermBranch *) override; 273 bool ValidateSwitch::visitBranch(Visit, TIntermBranch *) in visitBranch() argument
|
D | ValidateAST.cpp | 41 bool visitBranch(Visit visit, TIntermBranch *node) override; 228 bool ValidateAST::visitBranch(Visit visit, TIntermBranch *node) in visitBranch()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | NodeSearch.h | 39 virtual bool visitBranch(Visit visit, TIntermBranch *node) in visitBranch()
|