Searched refs:DecodedInstruction (Results 1 – 13 of 13) sorted by relevance
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
D | InstructionCodec.java | 33 @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 …]
|
D | DecodedInstruction.java | 39 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()
|
D | PackedSwitchPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | SparseSwitchPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 63 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | ZeroRegisterDecodedInstruction.java | 24 public final class ZeroRegisterDecodedInstruction extends DecodedInstruction { 39 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | OneRegisterDecodedInstruction.java | 24 public final class OneRegisterDecodedInstruction extends DecodedInstruction { 50 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | RegisterRangeDecodedInstruction.java | 25 public final class RegisterRangeDecodedInstruction extends DecodedInstruction { 55 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | TwoRegisterDecodedInstruction.java | 24 public final class TwoRegisterDecodedInstruction extends DecodedInstruction { 59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | ThreeRegisterDecodedInstruction.java | 24 public final class ThreeRegisterDecodedInstruction extends DecodedInstruction { 68 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FourRegisterDecodedInstruction.java | 24 public final class FourRegisterDecodedInstruction extends DecodedInstruction { 77 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FiveRegisterDecodedInstruction.java | 24 public final class FiveRegisterDecodedInstruction extends DecodedInstruction { 86 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FillArrayDataPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 97 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
/external/dexmaker/src/dx/java/com/android/dx/io/ |
D | CodeReader.java | 19 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()
|