Lines Matching refs:_nValue
40 void valueOf_float_test_impl(float _nValue) in valueOf_float_test_impl() argument
43 sValue = rtl::OString::valueOf( _nValue ); in valueOf_float_test_impl()
44 printf("nFloat := %.9f sValue := %s\n", _nValue, sValue.getStr()); in valueOf_float_test_impl()
48 bool bEqualResult = is_float_equal(_nValue, nValueATOF); in valueOf_float_test_impl()
52 void valueOf_float_test(float _nValue) in valueOf_float_test() argument
54 valueOf_float_test_impl(_nValue); in valueOf_float_test()
57 float nNegativeValue = -_nValue; in valueOf_float_test()
73 void valueOf_double_test_impl(double _nValue) in valueOf_double_test_impl() argument
76 sValue = rtl::OString::valueOf( _nValue ); in valueOf_double_test_impl()
77 printf("nDouble := %.20f sValue := %s\n", _nValue, sValue.getStr()); in valueOf_double_test_impl()
81 bool bEqualResult = is_double_equal(_nValue, nValueATOF); in valueOf_double_test_impl()
85 void valueOf_double_test(double _nValue) in valueOf_double_test() argument
87 valueOf_double_test_impl(_nValue); in valueOf_double_test()
90 double nNegativeValue = -_nValue; in valueOf_double_test()