HomeSort by relevance Sort by last modified time
    Searched full:dbl2 (Results 1 - 1 of 1) sorted by null

  /art/test/041-narrowing/src/
Main.java 21 double dbl2 = Double.NaN; local
24 + (Long.toHexString((byte)dbl2).equals("0") ? "00" : Long.toHexString((byte)dbl2)
27 + (Integer.toHexString((short)dbl2).equals("0") ? "0000" : Integer.toHexString(
28 (short)dbl2).substring(4)) + " expected: 0000");
30 + (Integer.toHexString((int)dbl2).equals("0") ? "00000000" : Integer
31 .toHexString((int)dbl2)) + " expected: 00000000");
33 + (Long.toHexString((long)dbl2).equals("0") ? "0000000000000000" : Long
34 .toHexString((long)dbl2)) + " expected: 0000000000000000");

Completed in 138 milliseconds