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

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

Issue 13529014: Use locale insensitive method to parse double literals. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address Srdjan's comments Created 7 years, 8 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 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698