/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/ |
D | InstructionsBuilderTest.java | 54 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in current_line_number_should_be_applied_to_instructions() 69 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in null_probearray_should_not_mark_instruction_as_covered() 80 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in unexecuted_probe_should_not_mark_instruction_as_covered() 91 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in executed_probe_should_mark_instruction_as_covered() 108 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_be_linked_by_default() 126 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_not_be_linked_when_noSuccessor_was_called() 146 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_be_linked_after_label_marked_as_successor() 164 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_not_be_linked_after_label_not_marked_as_successor() 184 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in jumps_should_propagate_coverage_status()
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/ |
D | PayloadAlignmentTest.java | 57 Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentRemoveNop() 74 Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentAddNop() 101 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentRemoveNopWithReferent() 127 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentAddNopWithReferent() 176 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPackedSwitchAlignment() 227 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testSparseSwitchAlignment()
|
D | FixGotoTest.java | 33 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGotoToGoto16() 56 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGotoToGoto32() 79 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGoto16ToGoto32() 115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGotoCascading()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/ |
D | MethodImplementationRewriter.java | 65 @Override @Nonnull public Iterable<? extends Instruction> getInstructions() { in getInstructions() method in MethodImplementationRewriter.RewrittenMethodImplementation 67 methodImplementation.getInstructions()); in getInstructions()
|
/external/deqp-deps/glslang/SPIRV/ |
D | SpvPostProcess.cpp | 350 auto ii = b->getInstructions().cbegin(); in postProcessCFG() 352 for (; ii != b->getInstructions().cend(); ++ii) in postProcessCFG() 356 … for (auto ii = b->getInstructions().cbegin(); ii != b->getInstructions().cend(); ++ii) in postProcessCFG() 412 for (auto ii = b->getInstructions().cbegin(); ii != b->getInstructions().cend(); ii++) in postProcessFeatures()
|
/external/deqp-deps/SPIRV-Tools/test/val/ |
D | val_layout_test.cpp | 68 const std::vector<std::string>& getInstructions() { in getInstructions() function 125 ::testing::Combine(::testing::Range((int)0, (int)getInstructions().size()), 171 std::vector<std::string> code(getInstructions().size()); in GenerateCode() 173 partition_copy(std::begin(getInstructions()), std::end(getInstructions()), in GenerateCode()
|
/external/swiftshader/third_party/SPIRV-Tools/test/val/ |
D | val_layout_test.cpp | 68 const std::vector<std::string>& getInstructions() { in getInstructions() function 125 ::testing::Combine(::testing::Range((int)0, (int)getInstructions().size()), 171 std::vector<std::string> code(getInstructions().size()); in GenerateCode() 173 partition_copy(std::begin(getInstructions()), std::end(getInstructions()), in GenerateCode()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | DDG.h | 127 const InstructionListType &getInstructions() const { in getInstructions() function 131 InstructionListType &getInstructions() { in getInstructions() function 133 static_cast<const SimpleDDGNode *>(this)->getInstructions()); in getInstructions() 137 Instruction *getFirstInstruction() const { return getInstructions().front(); } in getFirstInstruction() 138 Instruction *getLastInstruction() const { return getInstructions().back(); } in getLastInstruction() 156 appendInstructions(Input.getInstructions()); in appendInstructions()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
D | ImmutableMethodImplementation.java | 84 methodImplementation.getInstructions(), in of() 90 …@Nonnull @Override public ImmutableList<? extends ImmutableInstruction> getInstructions() { return… in getInstructions() method in ImmutableMethodImplementation
|
/external/llvm-project/llvm/tools/llvm-mca/ |
D | CodeRegion.h | 79 llvm::ArrayRef<llvm::MCInst> getInstructions() const { return Instructions; } in getInstructions() function 115 return Regions[Idx]->getInstructions(); in getInstructionSequence()
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
D | SmaliCodeFragmentFactoryTest.java | 111 PsiElement context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(0); in testCompletion() 115 context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(2); in testCompletion() 119 context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(6); in testCompletion()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/ |
D | SmalideaMethod.java | 151 List<SmaliInstruction> instructions = smaliMethod.getInstructions(); 162 @Nonnull @Override public Iterable<? extends Instruction> getInstructions() { 163 return Lists.transform(smaliMethod.getInstructions(),
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | DDG.h | 129 const InstructionListType &getInstructions() const { in getInstructions() function 133 InstructionListType &getInstructions() { in getInstructions() function 135 static_cast<const SimpleDDGNode *>(this)->getInstructions()); in getInstructions() 139 Instruction *getFirstInstruction() const { return getInstructions().front(); } in getFirstInstruction() 140 Instruction *getLastInstruction() const { return getInstructions().back(); } in getLastInstruction() 158 appendInstructions(Input.getInstructions()); in appendInstructions()
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
D | CustomMethodInlineTableTest.java | 80 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0); in testCustomMethodInlineTable_Virtual() 109 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0); in testCustomMethodInlineTable_Static() 138 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0); in testCustomMethodInlineTable_Direct()
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/ |
D | JumboStringConversionTest.java | 106 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testJumboStringConversion() 158 @Nonnull @Override public Iterable<? extends Instruction> getInstructions() { in testJumboStringConversion_NonMethodBuilder() 203 List<? extends Instruction> actualInstructions = Lists.newArrayList(impl.getInstructions()); in testJumboStringConversion_NonMethodBuilder()
|
D | CallSiteTest.java | 130 … Assert.assertEquals(1, Lists.newArrayList(method.getImplementation().getInstructions()).size()); in verifyDexFile() 131 …Instruction instruction = Lists.newArrayList(method.getImplementation().getInstructions().iterator… in verifyDexFile()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
D | Subroutine.java | 53 InstructionHandle[] getInstructions(); in getInstructions() method
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/ |
D | MethodImplementation.java | 56 @Nonnull Iterable<? extends Instruction> getInstructions(); in getInstructions() method
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
D | SmaliMethod.java | 126 @NotNull public List<SmaliInstruction> getInstructions() { in getInstructions() method in SmaliMethod 135 for (SmaliInstruction instruction: getInstructions()) { in getSourcePositionForCodeOffset() 150 for (final SmaliInstruction instruction: getInstructions()) { in getOffsetForLine()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/util/ |
D | InstructionUtils.java | 47 for (SmaliInstruction instruction: method.getInstructions()) { in findFirstInstructionWithTarget()
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/dexlib/ |
D | SmalideaMethodTest.java | 115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testSmalideaMethod() 425 List<Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testPackedSwitch() 491 List<Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testSparseSwitch() 566 List<Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testArrayData()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | DDG.cpp | 39 for (Instruction *I : cast<const SimpleDDGNode>(this)->getInstructions()) in collectInstructions() 81 for (const Instruction *I : cast<const SimpleDDGNode>(N).getInstructions()) in operator <<()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/ |
D | InstructionsBuilder.java | 159 Map<AbstractInsnNode, Instruction> getInstructions() { in getInstructions() method in InstructionsBuilder
|
/external/smali/smali/src/test/java/org/jf/smali/ |
D | ImplicitReferenceTest.java | 86 List<Instruction> instructions = Lists.newArrayList(methodImpl.getInstructions()); in testImplicitMethodReference() 181 List<Instruction> instructions = Lists.newArrayList(methodImpl.getInstructions()); in testImplicitFieldReference()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | DDG.cpp | 44 for (Instruction *I : cast<const SimpleDDGNode>(this)->getInstructions()) in collectInstructions() 86 for (const Instruction *I : cast<const SimpleDDGNode>(N).getInstructions()) in operator <<()
|