OLD | NEW |
---|---|
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef VM_DOUBLE_CONVERSION_H_ | 5 #ifndef VM_DOUBLE_CONVERSION_H_ |
6 #define VM_DOUBLE_CONVERSION_H_ | 6 #define VM_DOUBLE_CONVERSION_H_ |
7 | 7 |
8 #include "vm/globals.h" | 8 #include "vm/globals.h" |
9 #include "vm/object.h" | 9 #include "vm/object.h" |
10 | 10 |
11 namespace dart { | 11 namespace dart { |
12 | 12 |
13 bool DoubleToCString(double d, char* buffer, int buffer_size, | |
14 int* result_length); | |
13 bool DoubleToString(double d, String& result); | 15 bool DoubleToString(double d, String& result); |
Ivan Posva
2012/01/26 00:35:39
Please change this to return a RawString* and don'
floitsch
2012/01/27 12:51:07
Done.
| |
14 bool DoubleToStringAsFixed(double d, int fraction_digits, String& result); | 16 bool DoubleToStringAsFixed(double d, int fraction_digits, String& result); |
15 bool DoubleToStringAsExponential(double d, int fraction_digits, String& result); | 17 bool DoubleToStringAsExponential(double d, int fraction_digits, String& result); |
16 bool DoubleToStringAsPrecision(double d, int precision, String& result); | 18 bool DoubleToStringAsPrecision(double d, int precision, String& result); |
17 | 19 |
18 } // namespace dart | 20 } // namespace dart |
19 | 21 |
20 #endif // VM_DOUBLE_CONVERSION_H_ | 22 #endif // VM_DOUBLE_CONVERSION_H_ |
OLD | NEW |