| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 V(Int8Array_new, 1) \ | 130 V(Int8Array_new, 1) \ |
| 131 V(Int8Array_newTransferable, 1) \ | 131 V(Int8Array_newTransferable, 1) \ |
| 132 V(Int8Array_getIndexed, 2) \ | 132 V(Int8Array_getIndexed, 2) \ |
| 133 V(Int8Array_setIndexed, 3) \ | 133 V(Int8Array_setIndexed, 3) \ |
| 134 V(Uint8Array_new, 1) \ | 134 V(Uint8Array_new, 1) \ |
| 135 V(Uint8Array_newTransferable, 1) \ | 135 V(Uint8Array_newTransferable, 1) \ |
| 136 V(Uint8Array_getIndexed, 2) \ | 136 V(Uint8Array_getIndexed, 2) \ |
| 137 V(Uint8Array_setIndexed, 3) \ | 137 V(Uint8Array_setIndexed, 3) \ |
| 138 V(Uint8ClampedArray_new, 1) \ | 138 V(Uint8ClampedArray_new, 1) \ |
| 139 V(Uint8ClampedArray_newTransferable, 1) \ | 139 V(Uint8ClampedArray_newTransferable, 1) \ |
| 140 V(Uint8ClampedArray_getIndexed, 2) \ |
| 141 V(Uint8ClampedArray_setIndexed, 3) \ |
| 140 V(Int16Array_new, 1) \ | 142 V(Int16Array_new, 1) \ |
| 141 V(Int16Array_newTransferable, 1) \ | 143 V(Int16Array_newTransferable, 1) \ |
| 142 V(Int16Array_getIndexed, 2) \ | 144 V(Int16Array_getIndexed, 2) \ |
| 143 V(Int16Array_setIndexed, 3) \ | 145 V(Int16Array_setIndexed, 3) \ |
| 144 V(Uint16Array_new, 1) \ | 146 V(Uint16Array_new, 1) \ |
| 145 V(Uint16Array_newTransferable, 1) \ | 147 V(Uint16Array_newTransferable, 1) \ |
| 146 V(Uint16Array_getIndexed, 2) \ | 148 V(Uint16Array_getIndexed, 2) \ |
| 147 V(Uint16Array_setIndexed, 3) \ | 149 V(Uint16Array_setIndexed, 3) \ |
| 148 V(Int32Array_new, 1) \ | 150 V(Int32Array_new, 1) \ |
| 149 V(Int32Array_newTransferable, 1) \ | 151 V(Int32Array_newTransferable, 1) \ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 static void DN_##name(Dart_NativeArguments args); | 222 static void DN_##name(Dart_NativeArguments args); |
| 221 | 223 |
| 222 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 224 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 223 | 225 |
| 224 #undef DECLARE_BOOTSTRAP_NATIVE | 226 #undef DECLARE_BOOTSTRAP_NATIVE |
| 225 }; | 227 }; |
| 226 | 228 |
| 227 } // namespace dart | 229 } // namespace dart |
| 228 | 230 |
| 229 #endif // VM_BOOTSTRAP_NATIVES_H_ | 231 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |