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

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

Issue 10562038: Remove obsolete String + code (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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/string.dart ('k') | runtime/vm/parser.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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 V(ObjectArray_getIndexed, 2) \ 68 V(ObjectArray_getIndexed, 2) \
69 V(ObjectArray_setIndexed, 3) \ 69 V(ObjectArray_setIndexed, 3) \
70 V(ObjectArray_getLength, 1) \ 70 V(ObjectArray_getLength, 1) \
71 V(ObjectArray_copyFromObjectArray, 5) \ 71 V(ObjectArray_copyFromObjectArray, 5) \
72 V(StringBase_createFromCodePoints, 1) \ 72 V(StringBase_createFromCodePoints, 1) \
73 V(String_hashCode, 1) \ 73 V(String_hashCode, 1) \
74 V(String_getLength, 1) \ 74 V(String_getLength, 1) \
75 V(String_charAt, 2) \ 75 V(String_charAt, 2) \
76 V(String_charCodeAt, 2) \ 76 V(String_charCodeAt, 2) \
77 V(String_concat, 2) \ 77 V(String_concat, 2) \
78 V(String_plus, 2) \
79 V(String_toLowerCase, 1) \ 78 V(String_toLowerCase, 1) \
80 V(String_toUpperCase, 1) \ 79 V(String_toUpperCase, 1) \
81 V(Strings_concatAll, 1) \ 80 V(Strings_concatAll, 1) \
82 V(MathNatives_sqrt, 1) \ 81 V(MathNatives_sqrt, 1) \
83 V(MathNatives_sin, 1) \ 82 V(MathNatives_sin, 1) \
84 V(MathNatives_cos, 1) \ 83 V(MathNatives_cos, 1) \
85 V(MathNatives_tan, 1) \ 84 V(MathNatives_tan, 1) \
86 V(MathNatives_asin, 1) \ 85 V(MathNatives_asin, 1) \
87 V(MathNatives_acos, 1) \ 86 V(MathNatives_acos, 1) \
88 V(MathNatives_atan, 1) \ 87 V(MathNatives_atan, 1) \
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 V(GrowableObjectArray_getLength, 1) \ 186 V(GrowableObjectArray_getLength, 1) \
188 V(GrowableObjectArray_getCapacity, 1) \ 187 V(GrowableObjectArray_getCapacity, 1) \
189 V(GrowableObjectArray_setLength, 2) \ 188 V(GrowableObjectArray_setLength, 2) \
190 V(GrowableObjectArray_setData, 2) \ 189 V(GrowableObjectArray_setData, 2) \
191 190
192 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY) 191 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY)
193 192
194 } // namespace dart 193 } // namespace dart
195 194
196 #endif // VM_BOOTSTRAP_NATIVES_H_ 195 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/string.dart ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698