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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 V(TypedefMirror_declaration, 1) \ | 339 V(TypedefMirror_declaration, 1) \ |
340 V(VariableMirror_type, 2) \ | 340 V(VariableMirror_type, 2) \ |
341 V(GrowableList_allocate, 2) \ | 341 V(GrowableList_allocate, 2) \ |
342 V(GrowableList_getIndexed, 2) \ | 342 V(GrowableList_getIndexed, 2) \ |
343 V(GrowableList_setIndexed, 3) \ | 343 V(GrowableList_setIndexed, 3) \ |
344 V(GrowableList_getLength, 1) \ | 344 V(GrowableList_getLength, 1) \ |
345 V(GrowableList_getCapacity, 1) \ | 345 V(GrowableList_getCapacity, 1) \ |
346 V(GrowableList_setLength, 2) \ | 346 V(GrowableList_setLength, 2) \ |
347 V(GrowableList_setData, 2) \ | 347 V(GrowableList_setData, 2) \ |
348 V(Internal_makeListFixedLength, 1) \ | 348 V(Internal_makeListFixedLength, 1) \ |
| 349 V(LinkedHashMap_allocate, 1) \ |
| 350 V(LinkedHashMap_getLength, 1) \ |
| 351 V(LinkedHashMap_insertOrUpdate, 3) \ |
| 352 V(LinkedHashMap_lookUp, 2) \ |
| 353 V(LinkedHashMap_containsKey, 2) \ |
| 354 V(LinkedHashMap_remove, 2) \ |
| 355 V(LinkedHashMap_clear, 1) \ |
| 356 V(LinkedHashMap_toArray, 1) \ |
| 357 V(LinkedHashMap_getModMark, 2) \ |
| 358 V(LinkedHashMap_useInternal, 0) \ |
349 V(WeakProperty_new, 2) \ | 359 V(WeakProperty_new, 2) \ |
350 V(WeakProperty_getKey, 1) \ | 360 V(WeakProperty_getKey, 1) \ |
351 V(WeakProperty_getValue, 1) \ | 361 V(WeakProperty_getValue, 1) \ |
352 V(WeakProperty_setValue, 2) \ | 362 V(WeakProperty_setValue, 2) \ |
353 V(Uri_isWindowsPlatform, 0) \ | 363 V(Uri_isWindowsPlatform, 0) \ |
354 V(LibraryPrefix_load, 1) \ | 364 V(LibraryPrefix_load, 1) \ |
355 V(LibraryPrefix_invalidateDependentCode, 1) \ | 365 V(LibraryPrefix_invalidateDependentCode, 1) \ |
356 V(UserTag_new, 2) \ | 366 V(UserTag_new, 2) \ |
357 V(UserTag_label, 1) \ | 367 V(UserTag_label, 1) \ |
358 V(UserTag_defaultTag, 0) \ | 368 V(UserTag_defaultTag, 0) \ |
(...skipping 14 matching lines...) Expand all Loading... |
373 static void DN_##name(Dart_NativeArguments args); | 383 static void DN_##name(Dart_NativeArguments args); |
374 | 384 |
375 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 385 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
376 | 386 |
377 #undef DECLARE_BOOTSTRAP_NATIVE | 387 #undef DECLARE_BOOTSTRAP_NATIVE |
378 }; | 388 }; |
379 | 389 |
380 } // namespace dart | 390 } // namespace dart |
381 | 391 |
382 #endif // VM_BOOTSTRAP_NATIVES_H_ | 392 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |