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

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

Completed in 96 milliseconds