/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | AddDefaultReturnStatements.cpp | 31 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement()
|
D | RemoveSwitchFallThrough.cpp | 232 TIntermBranch *lastStatementAsBranch = node->getSequence()->back()->getAsBranchNode(); in DoesBlockAlwaysBreak()
|
/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()
|
D | RemoveSwitchFallThrough.cpp | 232 TIntermBranch *lastStatementAsBranch = node->getSequence()->back()->getAsBranchNode(); in DoesBlockAlwaysBreak()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | AsNode.h | 198 return node ? node->getAsBranchNode() : nullptr;
|
D | IntermRebuild.cpp | 388 return visitBranchPre(*originalNode.getAsBranchNode()); in traversePre() 454 return traverseBranchChildren(*currNode.getAsBranchNode()); in traverseChildren() 525 return visitBranchPost(*currNode.getAsBranchNode()); in traversePost()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | AnalyzeCallDepth.cpp | 25 if((*current)->getAsBranchNode()) // Kill, Break, Continue or Return in traverseCaseBody()
|
D | intermediate.h | 285 virtual TIntermBranch* getAsBranchNode() { return 0; } in getAsBranchNode() function 395 virtual TIntermBranch* getAsBranchNode() { return this; } in getAsBranchNode() function
|
D | OutputASM.cpp | 2045 if((*caseIt)->getAsBranchNode()) in visitSwitch() 2069 if((*defaultIt)->getAsBranchNode()) // Kill, Break, Continue or Return in visitSwitch()
|
/third_party/glslang/glslang/Include/ |
D | intermediate.h | 1099 virtual glslang::TIntermBranch* getAsBranchNode() { return nullptr; } in getAsBranchNode() function 1112 virtual const glslang::TIntermBranch* getAsBranchNode() const { return nullptr; } in getAsBranchNode() function 1252 virtual TIntermBranch* getAsBranchNode() { return this; } in getAsBranchNode() function 1253 virtual const TIntermBranch* getAsBranchNode() const { return this; } in getAsBranchNode() function
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IntermNode.h | 104 virtual TIntermBranch *getAsBranchNode() { return nullptr; } in getAsBranchNode() function 230 TIntermBranch *getAsBranchNode() override { return this; } in getAsBranchNode() function
|
D | OutputHLSL.cpp | 2089 node->getSequence()->empty() || !node->getSequence()->back()->getAsBranchNode() || in visitBlock() 2090 node->getSequence()->back()->getAsBranchNode()->getFlowOp() != EOpReturn; in visitBlock()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IntermNode.h | 107 virtual TIntermBranch *getAsBranchNode() { return nullptr; } in getAsBranchNode() function 259 TIntermBranch *getAsBranchNode() override { return this; } in getAsBranchNode() function
|
D | OutputHLSL.cpp | 2160 node->getSequence()->empty() || !node->getSequence()->back()->getAsBranchNode() || in visitBlock() 2161 node->getSequence()->back()->getAsBranchNode()->getFlowOp() != EOpReturn; in visitBlock()
|
/third_party/glslang/glslang/MachineIndependent/ |
D | glslang.y | 3791 if ($1 && $1->getAsBranchNode() && ($1->getAsBranchNode()->getFlowOp() == EOpCase || 3792 $1->getAsBranchNode()->getFlowOp() == EOpDefault)) { 3798 if ($2 && $2->getAsBranchNode() && ($2->getAsBranchNode()->getFlowOp() == EOpCase || 3799 $2->getAsBranchNode()->getFlowOp() == EOpDefault)) {
|
D | glslang.m4 | 3791 if ($1 && $1->getAsBranchNode() && ($1->getAsBranchNode()->getFlowOp() == EOpCase || 3792 $1->getAsBranchNode()->getFlowOp() == EOpDefault)) { 3798 if ($2 && $2->getAsBranchNode() && ($2->getAsBranchNode()->getFlowOp() == EOpCase || 3799 $2->getAsBranchNode()->getFlowOp() == EOpDefault)) {
|
D | glslang_tab.cpp | 11207 …termNode) && (yyvsp[0].interm.intermNode)->getAsBranchNode() && ((yyvsp[0].interm.intermNode)->get… in yyparse() 11208 … (yyvsp[0].interm.intermNode)->getAsBranchNode()->getFlowOp() == EOpDefault)) { in yyparse() 11219 …termNode) && (yyvsp[0].interm.intermNode)->getAsBranchNode() && ((yyvsp[0].interm.intermNode)->get… in yyparse() 11220 … (yyvsp[0].interm.intermNode)->getAsBranchNode()->getFlowOp() == EOpDefault)) { in yyparse()
|
D | ParseHelper.cpp | 9368 TIntermBranch* prevBranch = (*switchSequence)[s]->getAsBranchNode(); in wrapupSwitchSubsequence() 9371 TIntermTyped* newExpression = branchNode->getAsBranchNode()->getExpression(); in wrapupSwitchSubsequence()
|
/third_party/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 3805 … if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpDefault) in visitSwitch() 3807 … else if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpCase) { in visitSwitch() 3809 caseValues.push_back(child->getAsBranchNode()->getExpression()->getAsConstantUnion() in visitSwitch()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslGrammar.cpp | 3419 TIntermBranch* branch = statement ? statement->getAsBranchNode() : nullptr; in acceptCompoundStatement()
|
D | hlslParseHelper.cpp | 9372 TIntermBranch* prevBranch = (*switchSequence)[s]->getAsBranchNode(); in wrapupSwitchSubsequence() 9375 TIntermTyped* newExpression = branchNode->getAsBranchNode()->getExpression(); in wrapupSwitchSubsequence()
|