| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 V(ByteArray_getInt64, 2) \ | 119 V(ByteArray_getInt64, 2) \ |
| 120 V(ByteArray_setInt64, 3) \ | 120 V(ByteArray_setInt64, 3) \ |
| 121 V(ByteArray_getUint64, 2) \ | 121 V(ByteArray_getUint64, 2) \ |
| 122 V(ByteArray_setUint64, 3) \ | 122 V(ByteArray_setUint64, 3) \ |
| 123 V(ByteArray_getFloat32, 2) \ | 123 V(ByteArray_getFloat32, 2) \ |
| 124 V(ByteArray_setFloat32, 3) \ | 124 V(ByteArray_setFloat32, 3) \ |
| 125 V(ByteArray_getFloat64, 2) \ | 125 V(ByteArray_getFloat64, 2) \ |
| 126 V(ByteArray_setFloat64, 3) \ | 126 V(ByteArray_setFloat64, 3) \ |
| 127 V(ByteArray_setRange, 5) \ | 127 V(ByteArray_setRange, 5) \ |
| 128 V(Int8Array_new, 1) \ | 128 V(Int8Array_new, 1) \ |
| 129 V(Int8Array_newTransferrable, 1) \ |
| 129 V(Int8Array_getIndexed, 2) \ | 130 V(Int8Array_getIndexed, 2) \ |
| 130 V(Int8Array_setIndexed, 3) \ | 131 V(Int8Array_setIndexed, 3) \ |
| 131 V(Uint8Array_new, 1) \ | 132 V(Uint8Array_new, 1) \ |
| 132 V(Uint8Array_getIndexed, 2) \ | 133 V(Uint8Array_getIndexed, 2) \ |
| 133 V(Uint8Array_setIndexed, 3) \ | 134 V(Uint8Array_setIndexed, 3) \ |
| 134 V(Int16Array_new, 1) \ | 135 V(Int16Array_new, 1) \ |
| 135 V(Int16Array_getIndexed, 2) \ | 136 V(Int16Array_getIndexed, 2) \ |
| 136 V(Int16Array_setIndexed, 3) \ | 137 V(Int16Array_setIndexed, 3) \ |
| 137 V(Uint16Array_new, 1) \ | 138 V(Uint16Array_new, 1) \ |
| 138 V(Uint16Array_getIndexed, 2) \ | 139 V(Uint16Array_getIndexed, 2) \ |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 static void DN_##name(Dart_NativeArguments args); | 207 static void DN_##name(Dart_NativeArguments args); |
| 207 | 208 |
| 208 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 209 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 209 | 210 |
| 210 #undef DECLARE_BOOTSTRAP_NATIVE | 211 #undef DECLARE_BOOTSTRAP_NATIVE |
| 211 }; | 212 }; |
| 212 | 213 |
| 213 } // namespace dart | 214 } // namespace dart |
| 214 | 215 |
| 215 #endif // VM_BOOTSTRAP_NATIVES_H_ | 216 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |