| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 V(DateNatives_currentTimeMillis, 0) \ | 147 V(DateNatives_currentTimeMillis, 0) \ |
| 148 V(DateNatives_timeZoneName, 1) \ | 148 V(DateNatives_timeZoneName, 1) \ |
| 149 V(DateNatives_timeZoneOffsetInSeconds, 1) \ | 149 V(DateNatives_timeZoneOffsetInSeconds, 1) \ |
| 150 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \ | 150 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \ |
| 151 V(AssertionError_throwNew, 2) \ | 151 V(AssertionError_throwNew, 2) \ |
| 152 V(TypeError_throwNew, 5) \ | 152 V(TypeError_throwNew, 5) \ |
| 153 V(FallThroughError_throwNew, 1) \ | 153 V(FallThroughError_throwNew, 1) \ |
| 154 V(AbstractClassInstantiationError_throwNew, 2) \ | 154 V(AbstractClassInstantiationError_throwNew, 2) \ |
| 155 V(Stopwatch_now, 0) \ | 155 V(Stopwatch_now, 0) \ |
| 156 V(Stopwatch_frequency, 0) \ | 156 V(Stopwatch_frequency, 0) \ |
| 157 V(Timeline_getTraceClock, 0) \ |
| 158 V(Timeline_reportCompleteEvent, 5) \ |
| 157 V(TypedData_Int8Array_new, 1) \ | 159 V(TypedData_Int8Array_new, 1) \ |
| 158 V(TypedData_Uint8Array_new, 1) \ | 160 V(TypedData_Uint8Array_new, 1) \ |
| 159 V(TypedData_Uint8ClampedArray_new, 1) \ | 161 V(TypedData_Uint8ClampedArray_new, 1) \ |
| 160 V(TypedData_Int16Array_new, 1) \ | 162 V(TypedData_Int16Array_new, 1) \ |
| 161 V(TypedData_Uint16Array_new, 1) \ | 163 V(TypedData_Uint16Array_new, 1) \ |
| 162 V(TypedData_Int32Array_new, 1) \ | 164 V(TypedData_Int32Array_new, 1) \ |
| 163 V(TypedData_Uint32Array_new, 1) \ | 165 V(TypedData_Uint32Array_new, 1) \ |
| 164 V(TypedData_Int64Array_new, 1) \ | 166 V(TypedData_Int64Array_new, 1) \ |
| 165 V(TypedData_Uint64Array_new, 1) \ | 167 V(TypedData_Uint64Array_new, 1) \ |
| 166 V(TypedData_Float32Array_new, 1) \ | 168 V(TypedData_Float32Array_new, 1) \ |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 static void DN_##name(Dart_NativeArguments args); | 407 static void DN_##name(Dart_NativeArguments args); |
| 406 | 408 |
| 407 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 409 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 408 | 410 |
| 409 #undef DECLARE_BOOTSTRAP_NATIVE | 411 #undef DECLARE_BOOTSTRAP_NATIVE |
| 410 }; | 412 }; |
| 411 | 413 |
| 412 } // namespace dart | 414 } // namespace dart |
| 413 | 415 |
| 414 #endif // VM_BOOTSTRAP_NATIVES_H_ | 416 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |