HomeSort by relevance Sort by last modified time
    Searched defs:OPCODE (Results 126 - 150 of 251) sorted by null

1 2 3 4 56 7 8 91011

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderArrayPayload.java 36 import org.jf.dexlib2.Opcode;
45 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
52 super(OPCODE);
61 @Override public Format getFormat() { return OPCODE.format; }
BuilderPackedSwitchPayload.java 37 import org.jf.dexlib2.Opcode;
47 public static final Opcode OPCODE = Opcode.PACKED_SWITCH_PAYLOAD;
53 super(OPCODE);
68 @Override public Format getFormat() { return OPCODE.format; }
BuilderSparseSwitchPayload.java 38 import org.jf.dexlib2.Opcode;
48 public static final Opcode OPCODE = Opcode.SPARSE_SWITCH_PAYLOAD;
53 super(OPCODE);
69 @Override public Format getFormat() { return OPCODE.format; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableArrayPayload.java 36 import org.jf.dexlib2.Opcode;
45 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
52 super(OPCODE);
59 super(OPCODE);
80 @Override public Format getFormat() { return OPCODE.format; }
ImmutablePackedSwitchPayload.java 36 import org.jf.dexlib2.Opcode;
46 public static final Opcode OPCODE = Opcode.PACKED_SWITCH_PAYLOAD;
51 super(OPCODE);
58 super(OPCODE);
74 @Override public Format getFormat() { return OPCODE.format; }
ImmutableSparseSwitchPayload.java 36 import org.jf.dexlib2.Opcode;
46 public static final Opcode OPCODE = Opcode.SPARSE_SWITCH_PAYLOAD;
51 super(OPCODE);
57 super(OPCODE);
73 @Override public Format getFormat() { return OPCODE.format; }
  /external/r8/src/main/java/com/android/tools/r8/code/
Aget.java 11 public static final int OPCODE = 0x44;
32 return OPCODE;
AgetBoolean.java 11 public static final int OPCODE = 0x47;
28 return OPCODE;
AgetByte.java 11 public static final int OPCODE = 0x48;
32 return OPCODE;
AgetChar.java 11 public static final int OPCODE = 0x49;
32 return OPCODE;
AgetObject.java 10 public static final int OPCODE = 0x46;
31 return OPCODE;
AgetShort.java 11 public static final int OPCODE = 0x4a;
32 return OPCODE;
AgetWide.java 11 public static final int OPCODE = 0x45;
32 return OPCODE;
Aput.java 11 public static final int OPCODE = 0x4b;
32 return OPCODE;
AputBoolean.java 11 public static final int OPCODE = 0x4e;
32 return OPCODE;
AputByte.java 11 public static final int OPCODE = 0x4f;
32 return OPCODE;
AputChar.java 11 public static final int OPCODE = 0x50;
32 return OPCODE;
AputObject.java 11 public static final int OPCODE = 0x4d;
32 return OPCODE;
AputShort.java 11 public static final int OPCODE = 0x51;
32 return OPCODE;
AputWide.java 11 public static final int OPCODE = 0x4c;
32 return OPCODE;
ArrayLength.java 10 public static final int OPCODE = 0x21;
31 return OPCODE;
CheckCast.java 13 public static final int OPCODE = 0x1f;
34 return OPCODE;
Const.java 14 public static final int OPCODE = 0x14;
35 return OPCODE;
Const16.java 14 public static final int OPCODE = 0x13;
35 return OPCODE;
Const4.java 14 public static final int OPCODE = 0x12;
35 return OPCODE;

Completed in 193 milliseconds

1 2 3 4 56 7 8 91011