Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 380333002: Add VM class for Map/LinkedHashMap. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/lib/linked_hash_map.dart ('k') | runtime/vm/bootstrap_natives.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « runtime/lib/linked_hash_map.dart ('k') | runtime/vm/bootstrap_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698