Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: runtime/vm/double_conversion.h

Issue 9113043: Implement Double.{toString, toStringAsExponential, toStringAsPrecision} (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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);
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698