| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 V(Double_greaterThanFromInteger, 2) \ | 71 V(Double_greaterThanFromInteger, 2) \ |
| 72 V(Double_equalToInteger, 2) \ | 72 V(Double_equalToInteger, 2) \ |
| 73 V(Double_greaterThan, 2) \ | 73 V(Double_greaterThan, 2) \ |
| 74 V(Double_equal, 2) \ | 74 V(Double_equal, 2) \ |
| 75 V(Double_doubleFromInteger, 2) \ | 75 V(Double_doubleFromInteger, 2) \ |
| 76 V(Double_round, 1) \ | 76 V(Double_round, 1) \ |
| 77 V(Double_floor, 1) \ | 77 V(Double_floor, 1) \ |
| 78 V(Double_ceil, 1) \ | 78 V(Double_ceil, 1) \ |
| 79 V(Double_truncate, 1) \ | 79 V(Double_truncate, 1) \ |
| 80 V(Double_toInt, 1) \ | 80 V(Double_toInt, 1) \ |
| 81 V(Double_parse, 1) \ | 81 V(Double_parse, 3) \ |
| 82 V(Double_toStringAsFixed, 2) \ | 82 V(Double_toStringAsFixed, 2) \ |
| 83 V(Double_toStringAsExponential, 2) \ | 83 V(Double_toStringAsExponential, 2) \ |
| 84 V(Double_toStringAsPrecision, 2) \ | 84 V(Double_toStringAsPrecision, 2) \ |
| 85 V(JSSyntaxRegExp_factory, 4) \ | 85 V(JSSyntaxRegExp_factory, 4) \ |
| 86 V(JSSyntaxRegExp_getPattern, 1) \ | 86 V(JSSyntaxRegExp_getPattern, 1) \ |
| 87 V(JSSyntaxRegExp_getIsMultiLine, 1) \ | 87 V(JSSyntaxRegExp_getIsMultiLine, 1) \ |
| 88 V(JSSyntaxRegExp_getIsCaseSensitive, 1) \ | 88 V(JSSyntaxRegExp_getIsCaseSensitive, 1) \ |
| 89 V(JSSyntaxRegExp_getGroupCount, 1) \ | 89 V(JSSyntaxRegExp_getGroupCount, 1) \ |
| 90 V(JSSyntaxRegExp_ExecuteMatch, 3) \ | 90 V(JSSyntaxRegExp_ExecuteMatch, 3) \ |
| 91 V(List_allocate, 2) \ | 91 V(List_allocate, 2) \ |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 static void DN_##name(Dart_NativeArguments args); | 372 static void DN_##name(Dart_NativeArguments args); |
| 373 | 373 |
| 374 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 374 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 375 | 375 |
| 376 #undef DECLARE_BOOTSTRAP_NATIVE | 376 #undef DECLARE_BOOTSTRAP_NATIVE |
| 377 }; | 377 }; |
| 378 | 378 |
| 379 } // namespace dart | 379 } // namespace dart |
| 380 | 380 |
| 381 #endif // VM_BOOTSTRAP_NATIVES_H_ | 381 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |