Home | History | Annotate | Download | only in intltest

Lines Matching refs:d2

743     //Double d2 = (Double) df.parse(str, new ParsePosition(0));
744 Formattable d2;
746 df->parse(str, d2, pp);
748 if (d2.getDouble() != d1)
749 errln(UnicodeString("Bug 4095713 test failed, new double value : ") + d2.getDouble());
1452 double d2 = -0.0001;
1467 df->format(d2, buffer, pos);
1469 errln(UnicodeString("") + d2 + " is formatted as " + buffer);
2027 double d2 = -0.0001;
2036 f2 = df->format(d2, f2, pos);
2041 errln(UnicodeString("") + d2 + UnicodeString(" x \"") + df->toPattern(temp) + "\" is formatted as \"" + f2 + '"');