Home
last modified time | relevance | path

Searched refs:getIntBits (Results 1 – 25 of 40) sorted by relevance

12

/dalvik/dx/src/com/android/dx/rop/cst/
DCstLiteralBits.java42 public abstract int getIntBits(); in getIntBits() method in CstLiteralBits
64 int bits = getIntBits(); in fitsIn16Bits()
79 int bits = getIntBits(); in fitsIn8Bits()
DCstByte.java71 int value = getIntBits(); in toString()
88 return Integer.toString(getIntBits()); in toHuman()
97 return (byte) getIntBits(); in getValue()
DCstShort.java72 int value = getIntBits(); in toString()
89 return Integer.toString(getIntBits()); in toHuman()
98 return (short) getIntBits(); in getValue()
DCstChar.java71 int value = getIntBits(); in toString()
88 return Integer.toString(getIntBits()); in toHuman()
97 return (char) getIntBits(); in getValue()
DCstFloat.java62 int bits = getIntBits(); in toString()
80 return Float.toString(Float.intBitsToFloat(getIntBits())); in toHuman()
89 return Float.intBitsToFloat(getIntBits()); in getValue()
DCstInteger.java88 int value = getIntBits(); in toString()
105 return Integer.toString(getIntBits()); in toHuman()
114 return getIntBits(); in getValue()
DCstKnownNull.java96 public int getIntBits() { in getIntBits() method in CstKnownNull
DCstLiteral32.java78 public final int getIntBits() { in getIntBits() method in CstLiteral32
DCstLiteral64.java78 public final int getIntBits() { in getIntBits() method in CstLiteral64
DCstBoolean.java97 return (getIntBits() == 0) ? false : true; in getValue()
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
DCstLiteralBits.java42 public abstract int getIntBits(); in getIntBits() method in CstLiteralBits
64 int bits = getIntBits(); in fitsIn16Bits()
79 int bits = getIntBits(); in fitsIn8Bits()
DCstByte.java71 int value = getIntBits(); in toString()
88 return Integer.toString(getIntBits()); in toHuman()
97 return (byte) getIntBits(); in getValue()
DCstChar.java71 int value = getIntBits(); in toString()
88 return Integer.toString(getIntBits()); in toHuman()
97 return (char) getIntBits(); in getValue()
DCstShort.java72 int value = getIntBits(); in toString()
89 return Integer.toString(getIntBits()); in toHuman()
98 return (short) getIntBits(); in getValue()
DCstFloat.java62 int bits = getIntBits(); in toString()
80 return Float.toString(Float.intBitsToFloat(getIntBits())); in toHuman()
89 return Float.intBitsToFloat(getIntBits()); in getValue()
DCstInteger.java88 int value = getIntBits(); in toString()
105 return Integer.toString(getIntBits()); in toHuman()
114 return getIntBits(); in getValue()
DCstKnownNull.java96 public int getIntBits() { in getIntBits() method in CstKnownNull
DCstLiteral32.java78 public final int getIntBits() { in getIntBits() method in CstLiteral32
DCstBoolean.java97 return (getIntBits() == 0) ? false : true; in getValue()
DCstLiteral64.java78 public final int getIntBits() { in getIntBits() method in CstLiteral64
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
DForm22b.java86 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits()); in isCompatible()
100 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
DForm21s.java84 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible()
98 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
DForm11n.java85 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits()); in isCompatible()
99 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
DForm22s.java86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible()
100 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DArrayData.java123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo()
130 out.writeShort((short) ((CstLiteral32) cst).getIntBits()); in writeTo()
137 out.writeInt(((CstLiteral32) cst).getIntBits()); in writeTo()

12