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

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

Issue 8333001: Implement case mapping using the Unicode default case mapping algorithm. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 V(ObjectArray_getIndexed, 2) \ 65 V(ObjectArray_getIndexed, 2) \
66 V(ObjectArray_setIndexed, 3) \ 66 V(ObjectArray_setIndexed, 3) \
67 V(ObjectArray_getLength, 1) \ 67 V(ObjectArray_getLength, 1) \
68 V(ObjectArray_copyFromObjectArray, 5) \ 68 V(ObjectArray_copyFromObjectArray, 5) \
69 V(StringBase_createFromCodePoints, 1) \ 69 V(StringBase_createFromCodePoints, 1) \
70 V(String_hashCode, 1) \ 70 V(String_hashCode, 1) \
71 V(String_getLength, 1) \ 71 V(String_getLength, 1) \
72 V(String_charAt, 2) \ 72 V(String_charAt, 2) \
73 V(String_charCodeAt, 2) \ 73 V(String_charCodeAt, 2) \
74 V(String_concat, 2) \ 74 V(String_concat, 2) \
75 V(String_toLowerCase, 1) \
76 V(String_toUpperCase, 1) \
75 V(Strings_concatAll, 1) \ 77 V(Strings_concatAll, 1) \
76 V(MathNatives_sqrt, 1) \ 78 V(MathNatives_sqrt, 1) \
77 V(MathNatives_sin, 1) \ 79 V(MathNatives_sin, 1) \
78 V(MathNatives_cos, 1) \ 80 V(MathNatives_cos, 1) \
79 V(MathNatives_tan, 1) \ 81 V(MathNatives_tan, 1) \
80 V(MathNatives_asin, 1) \ 82 V(MathNatives_asin, 1) \
81 V(MathNatives_acos, 1) \ 83 V(MathNatives_acos, 1) \
82 V(MathNatives_atan, 1) \ 84 V(MathNatives_atan, 1) \
83 V(MathNatives_2atan, 2) \ 85 V(MathNatives_2atan, 2) \
84 V(MathNatives_exp, 1) \ 86 V(MathNatives_exp, 1) \
(...skipping 13 matching lines...) Expand all
98 V(FallThroughError_throwNew, 1) \ 100 V(FallThroughError_throwNew, 1) \
99 V(Clock_now, 0) \ 101 V(Clock_now, 0) \
100 V(Clock_frequency, 0) \ 102 V(Clock_frequency, 0) \
101 103
102 104
103 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY) 105 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY)
104 106
105 } // namespace dart 107 } // namespace dart
106 108
107 #endif // VM_BOOTSTRAP_NATIVES_H_ 109 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/string.dart ('k') | runtime/vm/object.h » ('j') | runtime/vm/object.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698