| 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 void DoubleToCString(double d, char* buffer, int buffer_size); | 13 void DoubleToCString(double d, char* buffer, int buffer_size); |
| 14 RawString* DoubleToStringAsFixed(double d, int fraction_digits); | 14 RawString* DoubleToStringAsFixed(double d, int fraction_digits); |
| 15 RawString* DoubleToStringAsExponential(double d, int fraction_digits); | 15 RawString* DoubleToStringAsExponential(double d, int fraction_digits); |
| 16 RawString* DoubleToStringAsPrecision(double d, int precision); | 16 RawString* DoubleToStringAsPrecision(double d, int precision); |
| 17 | 17 |
| 18 bool CStringToDouble(const char* str, intptr_t length, double* result); |
| 19 |
| 18 } // namespace dart | 20 } // namespace dart |
| 19 | 21 |
| 20 #endif // VM_DOUBLE_CONVERSION_H_ | 22 #endif // VM_DOUBLE_CONVERSION_H_ |
| OLD | NEW |