Lines Matching defs:toHexString

38     private static String toHexString(float f) {
40 return Float.toHexString(f);
42 return "NaN(0x" + Integer.toHexString(Float.floatToRawIntBits(f)) + ")";
45 private static String toHexString(double d) {
47 return Double.toHexString(d);
49 return "NaN(0x" + Long.toHexString(Double.doubleToRawLongBits(d)) + ")";
56 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
69 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
82 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
83 + input2 + "\t(" + toHexString(input2) + ")\n" +
95 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
96 + input2 + "\t(" + toHexString(input2) + ")\n" +
108 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
120 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
133 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
134 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
135 "\tgot " + result + "\t(" + toHexString(result) + ").");
147 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
148 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
149 "\tgot " + result + "\t(" + toHexString(result) + ").");
161 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
162 + input2 + "\t(" + toHexString(input2) + ")\n" +
163 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
164 "\tgot " + result + "\t(" + toHexString(result) + ").");
176 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
177 + input2 + "\t(" + toHexString(input2) + ")\n" +
178 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
179 "\tgot " + result + "\t(" + toHexString(result) + ").");
191 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
193 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
194 "\tgot " + result + "\t(" + toHexString(result) + ").");
206 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
208 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
209 "\tgot " + result + "\t(" + toHexString(result) + ").");
248 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
249 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
250 "\tgot " + result + "\t(" + toHexString(result) + ");\n" +
262 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
263 + input2 + "\t(" + toHexString(input2) + ")\n" +
264 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
265 "\tgot " + result + "\t(" + toHexString(result) + ");\n" +
287 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
288 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
289 "\tgot " + result + "\t(" + toHexString(result) + ");\n" +
312 "\tFor input " + input + "\t(" + toHexString(input) + ")" +
313 "\n\texpected " + expected + "\t(" + toHexString(expected) + ")" +
314 "\n\tgot " + result + "\t(" + toHexString(result) + ");" +
330 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
331 "\texpected " + expected + "\t(" + toHexString(expected) + ")\n" +
332 "\tgot " + result + "\t(" + toHexString(result) + ");\n" +