Home
last modified time | relevance | path

Searched refs:OffsetInstruction (Results 1 – 16 of 16) sorted by relevance

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
DPayloadAlignmentTest.java38 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
188 OffsetInstruction gotoInstruction = (OffsetInstruction)instructions.get(0); in testPackedSwitchAlignment()
197 OffsetInstruction referent = (OffsetInstruction)instructions.get(7); in testPackedSwitchAlignment()
239 OffsetInstruction gotoInstruction = (OffsetInstruction)instructions.get(0); in testSparseSwitchAlignment()
248 OffsetInstruction referent = (OffsetInstruction)instructions.get(7); in testSparseSwitchAlignment()
DFixGotoTest.java11 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
37 Assert.assertEquals(502, ((OffsetInstruction)instructions.get(0)).getCodeOffset()); in testFixGotoToGoto16()
60 Assert.assertEquals(70003, ((OffsetInstruction)instructions.get(0)).getCodeOffset()); in testFixGotoToGoto32()
83 Assert.assertEquals(70003, ((OffsetInstruction)instructions.get(0)).getCodeOffset()); in testFixGoto16ToGoto32()
119 Assert.assertEquals(32769, ((OffsetInstruction)instructions.get(0)).getCodeOffset()); in testFixGotoCascading()
DFixOffsetsTest.java45 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
105 Assert.assertEquals(1004, ((OffsetInstruction)instructions.get(0)).getCodeOffset()); in testFixOffsets()
108 Assert.assertEquals(502, ((OffsetInstruction)instructions.get(501)).getCodeOffset()); in testFixOffsets()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DInstructionMethodItemFactory.java34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
46 if (instruction instanceof OffsetInstruction) { in makeInstructionFormatMethodItem()
48 (OffsetInstruction)instruction); in makeInstructionFormatMethodItem()
DOffsetInstructionFormatMethodItem.java35 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
41 public class OffsetInstructionFormatMethodItem extends InstructionMethodItem<OffsetInstruction> {
45 int codeAddress, OffsetInstruction instruction) { in OffsetInstructionFormatMethodItem()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
DInstruction30t.java34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
36 public interface Instruction30t extends OffsetInstruction {
DInstruction20t.java34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
36 public interface Instruction20t extends OffsetInstruction {
DInstruction10t.java34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
36 public interface Instruction10t extends OffsetInstruction {
DInstruction22t.java34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
37 public interface Instruction22t extends TwoRegisterInstruction, OffsetInstruction {
DInstruction21t.java34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
37 public interface Instruction21t extends OneRegisterInstruction, OffsetInstruction {
DInstruction31t.java34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
37 public interface Instruction31t extends OneRegisterInstruction, OffsetInstruction {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DBuilderOffsetInstruction.java35 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
40 …c abstract class BuilderOffsetInstruction extends BuilderInstruction implements OffsetInstruction {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
DOffsetInstruction.java34 public interface OffsetInstruction extends Instruction { interface
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DMethodDefinition.java47 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
111 … int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset(); in MethodDefinition()
132 … int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset(); in MethodDefinition()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DCodeItem.java317 } else if (instruction instanceof OffsetInstruction) { in makeAnnotator()
318 int offset = ((OffsetInstruction)instruction).getCodeOffset(); in makeAnnotator()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java517 if (instruction.instruction instanceof OffsetInstruction) {
518 OffsetInstruction offsetInstruction = (OffsetInstruction)instruction.instruction;