Home
last modified time | relevance | path

Searched refs:INVOKE_POLYMORPHIC (Results 1 – 11 of 11) sorted by relevance

/dalvik/dx/src/com/android/dx/rop/code/
DRegOps.java305 public static final int INVOKE_POLYMORPHIC = 58; field in RegOps
386 case INVOKE_POLYMORPHIC: return "invoke-polymorphic"; in opName()
DRops.java1235 case RegOps.INVOKE_POLYMORPHIC: { in ropFor()
2067 return new Rop(RegOps.INVOKE_POLYMORPHIC, in opInvokePolymorphic()
/dalvik/dx/src/com/android/dx/io/
DOpcodes.java263 public static final int INVOKE_POLYMORPHIC = 0xfa; field in Opcodes
DOpcodeInfo.java934 public static final Info INVOKE_POLYMORPHIC = field in OpcodeInfo
935 new Info(Opcodes.INVOKE_POLYMORPHIC, "invoke-polymorphic",
1191 set(INVOKE_POLYMORPHIC);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DDalvOps.java284 public static final int INVOKE_POLYMORPHIC = 0xfa; field in DalvOps
DDops.java501 public static final Dop INVOKE_POLYMORPHIC = field in Dops
502 new Dop(DalvOps.INVOKE_POLYMORPHIC, DalvOps.INVOKE_POLYMORPHIC,
526 new Dop(DalvOps.INVOKE_POLYMORPHIC_RANGE, DalvOps.INVOKE_POLYMORPHIC,
/dalvik/dx/src/com/android/dx/dex/code/
DDalvInsnList.java210 if (insn.getOpcode().getFamily() != Opcodes.INVOKE_POLYMORPHIC) { in getOutsSize()
DDops.java940 public static final Dop INVOKE_POLYMORPHIC = field in Dops
941 new Dop(Opcodes.INVOKE_POLYMORPHIC, Opcodes.INVOKE_POLYMORPHIC,
945 new Dop(Opcodes.INVOKE_POLYMORPHIC_RANGE, Opcodes.INVOKE_POLYMORPHIC,
1191 set(INVOKE_POLYMORPHIC);
DRopToDop.java498 case RegOps.INVOKE_POLYMORPHIC: return Dops.INVOKE_POLYMORPHIC; in dopFor()
/dalvik/dx/src/com/android/dx/cf/code/
DRopperMachine.java616 if (rop.getOpcode() == RegOps.INVOKE_POLYMORPHIC) { in run()
966 return RegOps.INVOKE_POLYMORPHIC; in jopToRopOpcode()
/dalvik/dx/src/com/android/dx/io/instructions/
DInstructionCodec.java676 if (opcode != Opcodes.INVOKE_POLYMORPHIC) { in FORMAT_45CC()