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

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

Issue 8728006: Implement Double.toStringAsFixed. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix syntax error. Created 9 years 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
« no previous file with comments | « runtime/lib/double.dart ('k') | runtime/vm/double_conversion.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 V(Double_equal, 2) \ 47 V(Double_equal, 2) \
48 V(Double_isNegative, 1) \ 48 V(Double_isNegative, 1) \
49 V(Double_isInfinite, 1) \ 49 V(Double_isInfinite, 1) \
50 V(Double_isNaN, 1) \ 50 V(Double_isNaN, 1) \
51 V(Double_doubleFromInteger, 2) \ 51 V(Double_doubleFromInteger, 2) \
52 V(Double_round, 1) \ 52 V(Double_round, 1) \
53 V(Double_floor, 1) \ 53 V(Double_floor, 1) \
54 V(Double_ceil, 1) \ 54 V(Double_ceil, 1) \
55 V(Double_truncate, 1) \ 55 V(Double_truncate, 1) \
56 V(Double_toInt, 1) \ 56 V(Double_toInt, 1) \
57 V(Double_toStringAsFixed, 2) \
58 V(Double_toStringAsExponential, 2) \
59 V(Double_toStringAsPrecision, 2) \
57 V(Double_pow, 2) \ 60 V(Double_pow, 2) \
58 V(JSSyntaxRegExp_factory, 4) \ 61 V(JSSyntaxRegExp_factory, 4) \
59 V(JSSyntaxRegExp_getPattern, 1) \ 62 V(JSSyntaxRegExp_getPattern, 1) \
60 V(JSSyntaxRegExp_multiLine, 1) \ 63 V(JSSyntaxRegExp_multiLine, 1) \
61 V(JSSyntaxRegExp_ignoreCase, 1) \ 64 V(JSSyntaxRegExp_ignoreCase, 1) \
62 V(JSSyntaxRegExp_getGroupCount, 1) \ 65 V(JSSyntaxRegExp_getGroupCount, 1) \
63 V(JSSyntaxRegExp_ExecuteMatch, 3) \ 66 V(JSSyntaxRegExp_ExecuteMatch, 3) \
64 V(ObjectArray_allocate, 2) \ 67 V(ObjectArray_allocate, 2) \
65 V(ObjectArray_getIndexed, 2) \ 68 V(ObjectArray_getIndexed, 2) \
66 V(ObjectArray_setIndexed, 3) \ 69 V(ObjectArray_setIndexed, 3) \
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 V(ByteBuffer_setFloat32, 3) \ 126 V(ByteBuffer_setFloat32, 3) \
124 V(ByteBuffer_getFloat64, 2) \ 127 V(ByteBuffer_getFloat64, 2) \
125 V(ByteBuffer_setFloat64, 3) \ 128 V(ByteBuffer_setFloat64, 3) \
126 129
127 130
128 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY) 131 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY)
129 132
130 } // namespace dart 133 } // namespace dart
131 134
132 #endif // VM_BOOTSTRAP_NATIVES_H_ 135 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/double.dart ('k') | runtime/vm/double_conversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698