| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 V(VariableMirror_type, 2) \ | 344 V(VariableMirror_type, 2) \ |
| 345 V(GrowableList_allocate, 2) \ | 345 V(GrowableList_allocate, 2) \ |
| 346 V(GrowableList_getIndexed, 2) \ | 346 V(GrowableList_getIndexed, 2) \ |
| 347 V(GrowableList_setIndexed, 3) \ | 347 V(GrowableList_setIndexed, 3) \ |
| 348 V(GrowableList_getLength, 1) \ | 348 V(GrowableList_getLength, 1) \ |
| 349 V(GrowableList_getCapacity, 1) \ | 349 V(GrowableList_getCapacity, 1) \ |
| 350 V(GrowableList_setLength, 2) \ | 350 V(GrowableList_setLength, 2) \ |
| 351 V(GrowableList_setData, 2) \ | 351 V(GrowableList_setData, 2) \ |
| 352 V(Internal_makeListFixedLength, 1) \ | 352 V(Internal_makeListFixedLength, 1) \ |
| 353 V(Internal_makeFixedListUnmodifiable, 1) \ | 353 V(Internal_makeFixedListUnmodifiable, 1) \ |
| 354 V(Internal_inquireIs64Bit, 0) \ |
| 354 V(LinkedHashMap_allocate, 1) \ | 355 V(LinkedHashMap_allocate, 1) \ |
| 355 V(LinkedHashMap_getLength, 1) \ | 356 V(LinkedHashMap_getLength, 1) \ |
| 356 V(LinkedHashMap_insertOrUpdate, 3) \ | 357 V(LinkedHashMap_insertOrUpdate, 3) \ |
| 357 V(LinkedHashMap_lookUp, 2) \ | 358 V(LinkedHashMap_lookUp, 2) \ |
| 358 V(LinkedHashMap_containsKey, 2) \ | 359 V(LinkedHashMap_containsKey, 2) \ |
| 359 V(LinkedHashMap_remove, 2) \ | 360 V(LinkedHashMap_remove, 2) \ |
| 360 V(LinkedHashMap_clear, 1) \ | 361 V(LinkedHashMap_clear, 1) \ |
| 361 V(LinkedHashMap_toArray, 1) \ | 362 V(LinkedHashMap_toArray, 1) \ |
| 362 V(LinkedHashMap_getModMark, 2) \ | 363 V(LinkedHashMap_getModMark, 2) \ |
| 363 V(LinkedHashMap_useInternal, 0) \ | 364 V(LinkedHashMap_useInternal, 0) \ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 390 static void DN_##name(Dart_NativeArguments args); | 391 static void DN_##name(Dart_NativeArguments args); |
| 391 | 392 |
| 392 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 393 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 393 | 394 |
| 394 #undef DECLARE_BOOTSTRAP_NATIVE | 395 #undef DECLARE_BOOTSTRAP_NATIVE |
| 395 }; | 396 }; |
| 396 | 397 |
| 397 } // namespace dart | 398 } // namespace dart |
| 398 | 399 |
| 399 #endif // VM_BOOTSTRAP_NATIVES_H_ | 400 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |