| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 V(Double_ceil, 1) \ | 60 V(Double_ceil, 1) \ |
| 61 V(Double_truncate, 1) \ | 61 V(Double_truncate, 1) \ |
| 62 V(Double_toInt, 1) \ | 62 V(Double_toInt, 1) \ |
| 63 V(Double_parse, 1) \ | 63 V(Double_parse, 1) \ |
| 64 V(Double_toStringAsFixed, 2) \ | 64 V(Double_toStringAsFixed, 2) \ |
| 65 V(Double_toStringAsExponential, 2) \ | 65 V(Double_toStringAsExponential, 2) \ |
| 66 V(Double_toStringAsPrecision, 2) \ | 66 V(Double_toStringAsPrecision, 2) \ |
| 67 V(Double_pow, 2) \ | 67 V(Double_pow, 2) \ |
| 68 V(JSSyntaxRegExp_factory, 4) \ | 68 V(JSSyntaxRegExp_factory, 4) \ |
| 69 V(JSSyntaxRegExp_getPattern, 1) \ | 69 V(JSSyntaxRegExp_getPattern, 1) \ |
| 70 V(JSSyntaxRegExp_multiLine, 1) \ | 70 V(JSSyntaxRegExp_getIsMultiLine, 1) \ |
| 71 V(JSSyntaxRegExp_ignoreCase, 1) \ | 71 V(JSSyntaxRegExp_getIsCaseSensitive, 1) \ |
| 72 V(JSSyntaxRegExp_getGroupCount, 1) \ | 72 V(JSSyntaxRegExp_getGroupCount, 1) \ |
| 73 V(JSSyntaxRegExp_ExecuteMatch, 3) \ | 73 V(JSSyntaxRegExp_ExecuteMatch, 3) \ |
| 74 V(ObjectArray_allocate, 2) \ | 74 V(ObjectArray_allocate, 2) \ |
| 75 V(ObjectArray_getIndexed, 2) \ | 75 V(ObjectArray_getIndexed, 2) \ |
| 76 V(ObjectArray_setIndexed, 3) \ | 76 V(ObjectArray_setIndexed, 3) \ |
| 77 V(ObjectArray_getLength, 1) \ | 77 V(ObjectArray_getLength, 1) \ |
| 78 V(ObjectArray_copyFromObjectArray, 5) \ | 78 V(ObjectArray_copyFromObjectArray, 5) \ |
| 79 V(StringBase_createFromCodePoints, 1) \ | 79 V(StringBase_createFromCodePoints, 1) \ |
| 80 V(StringBase_substringUnchecked, 3) \ | 80 V(StringBase_substringUnchecked, 3) \ |
| 81 V(OneByteString_substringUnchecked, 3) \ | 81 V(OneByteString_substringUnchecked, 3) \ |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 static void DN_##name(Dart_NativeArguments args); | 225 static void DN_##name(Dart_NativeArguments args); |
| 226 | 226 |
| 227 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 227 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 228 | 228 |
| 229 #undef DECLARE_BOOTSTRAP_NATIVE | 229 #undef DECLARE_BOOTSTRAP_NATIVE |
| 230 }; | 230 }; |
| 231 | 231 |
| 232 } // namespace dart | 232 } // namespace dart |
| 233 | 233 |
| 234 #endif // VM_BOOTSTRAP_NATIVES_H_ | 234 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |