Home
last modified time | relevance | path

Searched refs:getAsBranchNode (Results 1 – 21 of 21) sorted by relevance

/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DAddDefaultReturnStatements.cpp31 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement()
DRemoveSwitchFallThrough.cpp232 TIntermBranch *lastStatementAsBranch = node->getSequence()->back()->getAsBranchNode(); in DoesBlockAlwaysBreak()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/d3d/
DAddDefaultReturnStatements.cpp32 TIntermBranch *returnNode = bodyNode->getSequence()->back()->getAsBranchNode(); in NeedsReturnStatement()
DRemoveSwitchFallThrough.cpp232 TIntermBranch *lastStatementAsBranch = node->getSequence()->back()->getAsBranchNode(); in DoesBlockAlwaysBreak()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DAsNode.h198 return node ? node->getAsBranchNode() : nullptr;
DIntermRebuild.cpp388 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/
DAnalyzeCallDepth.cpp25 if((*current)->getAsBranchNode()) // Kill, Break, Continue or Return in traverseCaseBody()
Dintermediate.h285 virtual TIntermBranch* getAsBranchNode() { return 0; } in getAsBranchNode() function
395 virtual TIntermBranch* getAsBranchNode() { return this; } in getAsBranchNode() function
DOutputASM.cpp2045 if((*caseIt)->getAsBranchNode()) in visitSwitch()
2069 if((*defaultIt)->getAsBranchNode()) // Kill, Break, Continue or Return in visitSwitch()
/third_party/glslang/glslang/Include/
Dintermediate.h1099 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/
DIntermNode.h104 virtual TIntermBranch *getAsBranchNode() { return nullptr; } in getAsBranchNode() function
230 TIntermBranch *getAsBranchNode() override { return this; } in getAsBranchNode() function
DOutputHLSL.cpp2089 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/
DIntermNode.h107 virtual TIntermBranch *getAsBranchNode() { return nullptr; } in getAsBranchNode() function
259 TIntermBranch *getAsBranchNode() override { return this; } in getAsBranchNode() function
DOutputHLSL.cpp2160 node->getSequence()->empty() || !node->getSequence()->back()->getAsBranchNode() || in visitBlock()
2161 node->getSequence()->back()->getAsBranchNode()->getFlowOp() != EOpReturn; in visitBlock()
/third_party/glslang/glslang/MachineIndependent/
Dglslang.y3791 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)) {
Dglslang.m43791 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)) {
Dglslang_tab.cpp11207 …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()
DParseHelper.cpp9368 TIntermBranch* prevBranch = (*switchSequence)[s]->getAsBranchNode(); in wrapupSwitchSubsequence()
9371 TIntermTyped* newExpression = branchNode->getAsBranchNode()->getExpression(); in wrapupSwitchSubsequence()
/third_party/glslang/SPIRV/
DGlslangToSpv.cpp3805 … 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/
DhlslGrammar.cpp3419 TIntermBranch* branch = statement ? statement->getAsBranchNode() : nullptr; in acceptCompoundStatement()
DhlslParseHelper.cpp9372 TIntermBranch* prevBranch = (*switchSequence)[s]->getAsBranchNode(); in wrapupSwitchSubsequence()
9375 TIntermTyped* newExpression = branchNode->getAsBranchNode()->getExpression(); in wrapupSwitchSubsequence()