Home
last modified time | relevance | path

Searched refs:VALUE_0 (Results 1 – 18 of 18) sorted by relevance

/dalvik/dx/src/com/android/dx/rop/cst/
DZeroes.java41 case Type.BT_BYTE: return CstByte.VALUE_0; in zeroFor()
42 case Type.BT_CHAR: return CstChar.VALUE_0; in zeroFor()
43 case Type.BT_DOUBLE: return CstDouble.VALUE_0; in zeroFor()
44 case Type.BT_FLOAT: return CstFloat.VALUE_0; in zeroFor()
45 case Type.BT_INT: return CstInteger.VALUE_0; in zeroFor()
46 case Type.BT_LONG: return CstLong.VALUE_0; in zeroFor()
47 case Type.BT_SHORT: return CstShort.VALUE_0; in zeroFor()
DCstLong.java28 public static final CstLong VALUE_0 = make(0); field in CstLong
DCstByte.java28 public static final CstByte VALUE_0 = make((byte) 0); field in CstByte
DCstShort.java28 public static final CstShort VALUE_0 = make((short) 0); field in CstShort
DCstChar.java28 public static final CstChar VALUE_0 = make((char) 0); field in CstChar
DCstDouble.java28 public static final CstDouble VALUE_0 = field in CstDouble
DCstFloat.java28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f)); field in CstFloat
DCstInteger.java34 public static final CstInteger VALUE_0 = make(0); field in CstInteger
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
DZeroes.java41 case Type.BT_BYTE: return CstByte.VALUE_0; in zeroFor()
42 case Type.BT_CHAR: return CstChar.VALUE_0; in zeroFor()
43 case Type.BT_DOUBLE: return CstDouble.VALUE_0; in zeroFor()
44 case Type.BT_FLOAT: return CstFloat.VALUE_0; in zeroFor()
45 case Type.BT_INT: return CstInteger.VALUE_0; in zeroFor()
46 case Type.BT_LONG: return CstLong.VALUE_0; in zeroFor()
47 case Type.BT_SHORT: return CstShort.VALUE_0; in zeroFor()
DCstLong.java28 public static final CstLong VALUE_0 = make(0); field in CstLong
DCstChar.java28 public static final CstChar VALUE_0 = make((char) 0); field in CstChar
DCstShort.java28 public static final CstShort VALUE_0 = make((short) 0); field in CstShort
DCstByte.java28 public static final CstByte VALUE_0 = make((byte) 0); field in CstByte
DCstDouble.java28 public static final CstDouble VALUE_0 = field in CstDouble
DCstFloat.java28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f)); field in CstFloat
DCstInteger.java34 public static final CstInteger VALUE_0 = make(0); field in CstInteger
/dalvik/dx/src/com/android/dx/cf/code/
DBytecodeArray.java244 CstInteger.VALUE_0, 0); in parseInstruction()
274 CstLong.VALUE_0, 0); in parseInstruction()
284 CstFloat.VALUE_0, 0); in parseInstruction()
299 CstDouble.VALUE_0, 0); in parseInstruction()
DRopper.java1157 CstInteger.VALUE_0); in addSetupBlocks()