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

12

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

Completed in 130 milliseconds

12