Home
last modified time | relevance | path

Searched refs:INSTANCE_OF (Results 1 – 12 of 12) sorted by relevance

/dalvik/dx/src/com/android/dx/rop/code/
DRegOps.java216 public static final int INSTANCE_OF = 44; field in RegOps
357 case INSTANCE_OF: return "instance-of"; in opName()
DRops.java820 public static final Rop INSTANCE_OF = field in Rops
821 new Rop(RegOps.INSTANCE_OF, Type.INT, StdTypeList.OBJECT,
1198 case RegOps.INSTANCE_OF: return INSTANCE_OF; in ropFor()
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DRegOps.java216 public static final int INSTANCE_OF = 44; field in RegOps
357 case INSTANCE_OF: return "instance-of"; in opName()
DRops.java820 public static final Rop INSTANCE_OF = field in Rops
821 new Rop(RegOps.INSTANCE_OF, Type.INT, StdTypeList.OBJECT,
1198 case RegOps.INSTANCE_OF: return INSTANCE_OF; in ropFor()
/dalvik/dx/src/com/android/dx/io/
DOpcodes.java76 public static final int INSTANCE_OF = 0x20; field in Opcodes
DOpcodeInfo.java190 public static final Info INSTANCE_OF = field in OpcodeInfo
191 new Info(Opcodes.INSTANCE_OF, "instance-of",
981 set(INSTANCE_OF);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DDalvOps.java66 public static final int INSTANCE_OF = 0x20; field in DalvOps
DRopToDop.java232 MAP.put(Rops.INSTANCE_OF, Dops.INSTANCE_OF); in MAP.put() argument
DDops.java191 public static final Dop INSTANCE_OF = field in Dops
192 new Dop(DalvOps.INSTANCE_OF, DalvOps.INSTANCE_OF,
976 set(INSTANCE_OF);
/dalvik/dx/src/com/android/dx/dex/code/
DRopToDop.java403 MAP.put(Rops.INSTANCE_OF, Dops.INSTANCE_OF); in MAP.put() argument
DDops.java194 public static final Dop INSTANCE_OF = field in Dops
195 new Dop(Opcodes.INSTANCE_OF, Opcodes.INSTANCE_OF,
979 set(INSTANCE_OF);
/dalvik/dx/src/com/android/dx/cf/code/
DRopperMachine.java992 return RegOps.INSTANCE_OF; in jopToRopOpcode()