Home
last modified time | relevance | path

Searched refs:DecodedInstruction (Results 1 – 13 of 13) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DInstructionCodec.java33 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_00X()
40 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_00X()
46 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_10X()
55 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_10X()
61 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_12X()
72 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_12X()
80 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_11N()
91 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11N()
99 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_11X()
109 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11X()
[all …]
DDecodedInstruction.java39 public abstract class DecodedInstruction { class
69 public static DecodedInstruction decode(CodeInput in) throws EOFException { in decode()
82 public static DecodedInstruction[] decodeAll(short[] encodedInstructions) { in decodeAll()
84 DecodedInstruction[] decoded = new DecodedInstruction[size]; in decodeAll()
89 decoded[in.cursor()] = DecodedInstruction.decode(in); in decodeAll()
101 public DecodedInstruction(InstructionCodec format, int opcode, in DecodedInstruction() method in DecodedInstruction
477 public abstract DecodedInstruction withIndex(int newIndex); in withIndex()
DPackedSwitchPayloadDecodedInstruction.java24 extends DecodedInstruction {
59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DSparseSwitchPayloadDecodedInstruction.java24 extends DecodedInstruction {
63 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DZeroRegisterDecodedInstruction.java24 public final class ZeroRegisterDecodedInstruction extends DecodedInstruction {
39 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DOneRegisterDecodedInstruction.java24 public final class OneRegisterDecodedInstruction extends DecodedInstruction {
50 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DRegisterRangeDecodedInstruction.java25 public final class RegisterRangeDecodedInstruction extends DecodedInstruction {
55 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DTwoRegisterDecodedInstruction.java24 public final class TwoRegisterDecodedInstruction extends DecodedInstruction {
59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DThreeRegisterDecodedInstruction.java24 public final class ThreeRegisterDecodedInstruction extends DecodedInstruction {
68 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFourRegisterDecodedInstruction.java24 public final class FourRegisterDecodedInstruction extends DecodedInstruction {
77 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFiveRegisterDecodedInstruction.java24 public final class FiveRegisterDecodedInstruction extends DecodedInstruction {
86 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFillArrayDataPayloadDecodedInstruction.java24 extends DecodedInstruction {
97 public DecodedInstruction withIndex(int newIndex) { in withIndex()
/external/dexmaker/src/dx/java/com/android/dx/io/
DCodeReader.java19 import com.android.dx.io.instructions.DecodedInstruction;
79 public void visitAll(DecodedInstruction[] decodedInstructions) in visitAll()
84 DecodedInstruction one = decodedInstructions[i]; in visitAll()
94 DecodedInstruction[] decodedInstructions = in visitAll()
95 DecodedInstruction.decodeAll(encodedInstructions); in visitAll()
99 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) { in callVisit()
119 void visit(DecodedInstruction[] all, DecodedInstruction one); in visit()