HomeSort by relevance Sort by last modified time
    Searched refs:getIntBits (Results 1 - 25 of 42) sorted by null

1 2

  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstLiteralBits.java 42 public abstract int getIntBits();
64 int bits = getIntBits();
79 int bits = getIntBits();
CstByte.java 71 int value = getIntBits();
88 return Integer.toString(getIntBits());
97 return (byte) getIntBits();
CstChar.java 71 int value = getIntBits();
88 return Integer.toString(getIntBits());
97 return (char) getIntBits();
CstFloat.java 62 int bits = getIntBits();
80 return Float.toString(Float.intBitsToFloat(getIntBits()));
89 return Float.intBitsToFloat(getIntBits());
CstShort.java 72 int value = getIntBits();
89 return Integer.toString(getIntBits());
98 return (short) getIntBits();
CstInteger.java 88 int value = getIntBits();
105 return Integer.toString(getIntBits());
114 return getIntBits();
CstBoolean.java 97 return (getIntBits() == 0) ? false : true;
CstKnownNull.java 85 // See comment in getIntBits().
96 public int getIntBits() {
CstLiteral32.java 78 public final int getIntBits() {
CstLiteral64.java 78 public final int getIntBits() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstLiteralBits.java 42 public abstract int getIntBits();
64 int bits = getIntBits();
79 int bits = getIntBits();
CstByte.java 71 int value = getIntBits();
88 return Integer.toString(getIntBits());
97 return (byte) getIntBits();
CstChar.java 71 int value = getIntBits();
88 return Integer.toString(getIntBits());
97 return (char) getIntBits();
CstFloat.java 62 int bits = getIntBits();
80 return Float.toString(Float.intBitsToFloat(getIntBits()));
89 return Float.intBitsToFloat(getIntBits());
CstShort.java 72 int value = getIntBits();
89 return Integer.toString(getIntBits());
98 return (short) getIntBits();
CstInteger.java 88 int value = getIntBits();
105 return Integer.toString(getIntBits());
114 return getIntBits();
CstBoolean.java 97 return (getIntBits() == 0) ? false : true;
CstKnownNull.java 85 // See comment in getIntBits().
96 public int getIntBits() {
CstLiteral32.java 78 public final int getIntBits() {
CstLiteral64.java 78 public final int getIntBits() {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form11n.java 85 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits());
99 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits();
Form21s.java 84 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
98 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits();
Form22b.java 86 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits());
100 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits();
Form22s.java 86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
100 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
130 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
137 out.writeInt(((CstLiteral32) cst).getIntBits());

Completed in 128 milliseconds

1 2