| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 V(Double_mul, 2) \ | 82 V(Double_mul, 2) \ |
| 83 V(Double_div, 2) \ | 83 V(Double_div, 2) \ |
| 84 V(Double_trunc_div, 2) \ | 84 V(Double_trunc_div, 2) \ |
| 85 V(Double_remainder, 2) \ | 85 V(Double_remainder, 2) \ |
| 86 V(Double_modulo, 2) \ | 86 V(Double_modulo, 2) \ |
| 87 V(Double_greaterThanFromInteger, 2) \ | 87 V(Double_greaterThanFromInteger, 2) \ |
| 88 V(Double_equalToInteger, 2) \ | 88 V(Double_equalToInteger, 2) \ |
| 89 V(Double_greaterThan, 2) \ | 89 V(Double_greaterThan, 2) \ |
| 90 V(Double_equal, 2) \ | 90 V(Double_equal, 2) \ |
| 91 V(Double_doubleFromInteger, 2) \ | 91 V(Double_doubleFromInteger, 2) \ |
| 92 V(Double_doubleFromPixels, 1) \ |
| 92 V(Double_round, 1) \ | 93 V(Double_round, 1) \ |
| 93 V(Double_floor, 1) \ | 94 V(Double_floor, 1) \ |
| 94 V(Double_ceil, 1) \ | 95 V(Double_ceil, 1) \ |
| 95 V(Double_truncate, 1) \ | 96 V(Double_truncate, 1) \ |
| 96 V(Double_toInt, 1) \ | 97 V(Double_toInt, 1) \ |
| 98 V(Double_toPixels, 1) \ |
| 97 V(Double_parse, 3) \ | 99 V(Double_parse, 3) \ |
| 98 V(Double_toString, 1) \ | 100 V(Double_toString, 1) \ |
| 99 V(Double_toStringAsFixed, 2) \ | 101 V(Double_toStringAsFixed, 2) \ |
| 100 V(Double_toStringAsExponential, 2) \ | 102 V(Double_toStringAsExponential, 2) \ |
| 101 V(Double_toStringAsPrecision, 2) \ | 103 V(Double_toStringAsPrecision, 2) \ |
| 102 V(Double_flipSignBit, 1) \ | 104 V(Double_flipSignBit, 1) \ |
| 103 V(RegExp_factory, 4) \ | 105 V(RegExp_factory, 4) \ |
| 104 V(RegExp_getPattern, 1) \ | 106 V(RegExp_getPattern, 1) \ |
| 105 V(RegExp_getIsMultiLine, 1) \ | 107 V(RegExp_getIsMultiLine, 1) \ |
| 106 V(RegExp_getIsCaseSensitive, 1) \ | 108 V(RegExp_getIsCaseSensitive, 1) \ |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 #ifndef PRODUCT | 436 #ifndef PRODUCT |
| 435 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 437 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 436 #endif | 438 #endif |
| 437 | 439 |
| 438 #undef DECLARE_BOOTSTRAP_NATIVE | 440 #undef DECLARE_BOOTSTRAP_NATIVE |
| 439 }; | 441 }; |
| 440 | 442 |
| 441 } // namespace dart | 443 } // namespace dart |
| 442 | 444 |
| 443 #endif // VM_BOOTSTRAP_NATIVES_H_ | 445 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |