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

1 2 3 4

  /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() {
  /external/dexmaker/src/dx/java/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();

Completed in 1155 milliseconds

1 2 3 4