/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/ |
D | KotlinWhenFilter.java | 86 private static void ignoreDefaultBranch(final AbstractInsnNode switchNode, in ignoreDefaultBranch() argument 89 if (switchNode.getOpcode() == Opcodes.LOOKUPSWITCH) { in ignoreDefaultBranch() 90 labels = ((LookupSwitchInsnNode) switchNode).labels; in ignoreDefaultBranch() 92 labels = ((TableSwitchInsnNode) switchNode).labels; in ignoreDefaultBranch() 98 output.replaceBranches(switchNode, newTargets); in ignoreDefaultBranch()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/ |
D | StringSwitchEcjFilterTest.java | 56 final AbstractInsnNode switchNode = m.instructions.getLast(); in should_filter() local 105 assertReplacedBranches(switchNode, expectedNewTargets); in should_filter() 106 assertIgnored(new Range(switchNode.getNext(), expectedToInclusive)); in should_filter() 132 final AbstractInsnNode switchNode = m.instructions.getLast(); in should_filter_when_default_is_first() local 154 assertReplacedBranches(switchNode, expectedNewTargets); in should_filter_when_default_is_first() 155 assertIgnored(new Range(switchNode.getNext(), expectedToInclusive)); in should_filter_when_default_is_first()
|
D | KotlinWhenFilterTest.java | 97 final AbstractInsnNode switchNode = m.instructions.getLast(); in should_filter_implicit_default() local 120 assertReplacedBranches(switchNode, newTargets); in should_filter_implicit_default()
|
/external/angle/src/compiler/translator/tree_ops/ |
D | RemoveDynamicIndexing.cpp | 218 TIntermSwitch *switchNode = new TIntermSwitch(indexParam->deepCopy(), statementList); in GetIndexFunctionDefinition() local 221 bodyNode->getSequence()->push_back(switchNode); in GetIndexFunctionDefinition()
|
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/ |
D | PredicateTree.cpp | 328 if (SwitchNode *switchNode = dyn_cast<SwitchNode>(&*node)) { in foldSwitchToBool() local 329 SwitchNode::ChildMapT &children = switchNode->getChildren(); in foldSwitchToBool()
|
D | PDLToPDLInterp.cpp | 199 } else if (auto *switchNode = dyn_cast<SwitchNode>(&node)) { in generateMatcher() local 202 for (auto &it : switchNode->getChildren()) in generateMatcher()
|
/external/angle/src/compiler/translator/TranslatorMetalDirect/ |
D | EmitMetal.cpp | 1663 bool GenMetalTraverser::visitSwitch(Visit, TIntermSwitch *switchNode) in visitSwitch() argument 1667 switchNode->getInit()->traverse(this); in visitSwitch() 1672 switchNode->getStatementList()->traverse(this); in visitSwitch()
|
/external/deqp-deps/glslang/glslang/HLSL/ |
D | hlslParseHelper.cpp | 9308 TIntermSwitch* switchNode = new TIntermSwitch(expression, body); in addSwitch() local 9309 switchNode->setLoc(loc); in addSwitch() 9310 handleSwitchAttributes(loc, switchNode, attributes); in addSwitch() 9312 return switchNode; in addSwitch()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/ |
D | hlslParseHelper.cpp | 9312 TIntermSwitch* switchNode = new TIntermSwitch(expression, body); in addSwitch() local 9313 switchNode->setLoc(loc); in addSwitch() 9314 handleSwitchAttributes(loc, switchNode, attributes); in addSwitch() 9316 return switchNode; in addSwitch()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ParseHelper.cpp | 8738 TIntermSwitch* switchNode = new TIntermSwitch(expression, body); in addSwitch() local 8739 switchNode->setLoc(loc); in addSwitch() 8741 return switchNode; in addSwitch()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | ParseHelper.cpp | 9206 TIntermSwitch* switchNode = new TIntermSwitch(expression, body); in addSwitch() local 9207 switchNode->setLoc(loc); in addSwitch() 9209 return switchNode; in addSwitch()
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | GlslangToSpv.cpp | 1197 …ontrolMask TGlslangToSpvTraverser::TranslateSwitchControl(const glslang::TIntermSwitch& switchNode) in TranslateSwitchControl() 1200 if (switchNode.getFlatten()) in TranslateSwitchControl() 1202 if (switchNode.getDontFlatten()) in TranslateSwitchControl()
|
/external/deqp-deps/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 1195 …ontrolMask TGlslangToSpvTraverser::TranslateSwitchControl(const glslang::TIntermSwitch& switchNode) in TranslateSwitchControl() 1198 if (switchNode.getFlatten()) in TranslateSwitchControl() 1200 if (switchNode.getDontFlatten()) in TranslateSwitchControl()
|