Lines Matching refs:sValue

40             rtl::OString sValue;  in valueOf_float_test_impl()  local
41 sValue = rtl::OString::valueOf( _nValue ); in valueOf_float_test_impl()
42 t_print(T_VERBOSE, "nFloat := %.9f sValue := %s\n", _nValue, sValue.getStr()); in valueOf_float_test_impl()
44 float nValueATOF = static_cast<float>(atof( sValue.getStr() )); in valueOf_float_test_impl()
118 rtl::OString sValue; in valueOf_double_test_impl() local
119 sValue = rtl::OString::valueOf( _nValue ); in valueOf_double_test_impl()
120 t_print(T_VERBOSE, "nDouble := %.20f sValue := %s\n", _nValue, sValue.getStr()); in valueOf_double_test_impl()
122 double nValueATOF = atof( sValue.getStr() ); in valueOf_double_test_impl()
275 rtl::OString sValue("3"); in toDouble_test_3() local
276 toDouble_test(sValue); in toDouble_test_3()
280 rtl::OString sValue("3.5"); in toDouble_test_3_5() local
281 toDouble_test(sValue); in toDouble_test_3_5()
285 rtl::OString sValue("3.0625"); in toDouble_test_3_0625() local
286 toDouble_test(sValue); in toDouble_test_3_0625()
291 rtl::OString sValue("3.141592653589793238462643383279502884197169399375"); in toDouble_test_pi() local
292 toDouble_test(sValue); in toDouble_test_pi()
297 rtl::OString sValue("1"); in toDouble_test_1() local
298 toDouble_test(sValue); in toDouble_test_1()
302 rtl::OString sValue("10"); in toDouble_test_10() local
303 toDouble_test(sValue); in toDouble_test_10()
307 rtl::OString sValue("100"); in toDouble_test_100() local
308 toDouble_test(sValue); in toDouble_test_100()
312 rtl::OString sValue("1000"); in toDouble_test_1000() local
313 toDouble_test(sValue); in toDouble_test_1000()
317 rtl::OString sValue("10000"); in toDouble_test_10000() local
318 toDouble_test(sValue); in toDouble_test_10000()
322 rtl::OString sValue("1e99"); in toDouble_test_1e99() local
323 toDouble_test(sValue); in toDouble_test_1e99()
327 rtl::OString sValue("1e-99"); in toDouble_test_1e_n99() local
328 toDouble_test(sValue); in toDouble_test_1e_n99()
332 rtl::OString sValue("1e308"); in toDouble_test_1e308() local
333 toDouble_test(sValue); in toDouble_test_1e308()