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

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

Issue 12039047: Rename xxxArray_newTransferable natives to xxxList_newTransferable. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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/byte_array.dart ('k') | no next file » | 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 V(ByteArray_getInt64, 2) \ 124 V(ByteArray_getInt64, 2) \
125 V(ByteArray_setInt64, 3) \ 125 V(ByteArray_setInt64, 3) \
126 V(ByteArray_getUint64, 2) \ 126 V(ByteArray_getUint64, 2) \
127 V(ByteArray_setUint64, 3) \ 127 V(ByteArray_setUint64, 3) \
128 V(ByteArray_getFloat32, 2) \ 128 V(ByteArray_getFloat32, 2) \
129 V(ByteArray_setFloat32, 3) \ 129 V(ByteArray_setFloat32, 3) \
130 V(ByteArray_getFloat64, 2) \ 130 V(ByteArray_getFloat64, 2) \
131 V(ByteArray_setFloat64, 3) \ 131 V(ByteArray_setFloat64, 3) \
132 V(ByteArray_setRange, 5) \ 132 V(ByteArray_setRange, 5) \
133 V(Int8Array_new, 1) \ 133 V(Int8Array_new, 1) \
134 V(Int8Array_newTransferable, 1) \ 134 V(Int8List_newTransferable, 1) \
135 V(Int8Array_getIndexed, 2) \ 135 V(Int8Array_getIndexed, 2) \
136 V(Int8Array_setIndexed, 3) \ 136 V(Int8Array_setIndexed, 3) \
137 V(Uint8Array_new, 1) \ 137 V(Uint8Array_new, 1) \
138 V(Uint8Array_newTransferable, 1) \ 138 V(Uint8List_newTransferable, 1) \
139 V(Uint8Array_getIndexed, 2) \ 139 V(Uint8Array_getIndexed, 2) \
140 V(Uint8Array_setIndexed, 3) \ 140 V(Uint8Array_setIndexed, 3) \
141 V(Uint8ClampedArray_new, 1) \ 141 V(Uint8ClampedArray_new, 1) \
142 V(Uint8ClampedArray_newTransferable, 1) \ 142 V(Uint8ClampedList_newTransferable, 1) \
143 V(Uint8ClampedArray_getIndexed, 2) \ 143 V(Uint8ClampedArray_getIndexed, 2) \
144 V(Uint8ClampedArray_setIndexed, 3) \ 144 V(Uint8ClampedArray_setIndexed, 3) \
145 V(Int16Array_new, 1) \ 145 V(Int16Array_new, 1) \
146 V(Int16Array_newTransferable, 1) \ 146 V(Int16List_newTransferable, 1) \
147 V(Int16Array_getIndexed, 2) \ 147 V(Int16Array_getIndexed, 2) \
148 V(Int16Array_setIndexed, 3) \ 148 V(Int16Array_setIndexed, 3) \
149 V(Uint16Array_new, 1) \ 149 V(Uint16Array_new, 1) \
150 V(Uint16Array_newTransferable, 1) \ 150 V(Uint16List_newTransferable, 1) \
151 V(Uint16Array_getIndexed, 2) \ 151 V(Uint16Array_getIndexed, 2) \
152 V(Uint16Array_setIndexed, 3) \ 152 V(Uint16Array_setIndexed, 3) \
153 V(Int32Array_new, 1) \ 153 V(Int32Array_new, 1) \
154 V(Int32Array_newTransferable, 1) \ 154 V(Int32List_newTransferable, 1) \
155 V(Int32Array_getIndexed, 2) \ 155 V(Int32Array_getIndexed, 2) \
156 V(Int32Array_setIndexed, 3) \ 156 V(Int32Array_setIndexed, 3) \
157 V(Uint32Array_new, 1) \ 157 V(Uint32Array_new, 1) \
158 V(Uint32Array_newTransferable, 1) \ 158 V(Uint32List_newTransferable, 1) \
159 V(Uint32Array_getIndexed, 2) \ 159 V(Uint32Array_getIndexed, 2) \
160 V(Uint32Array_setIndexed, 3) \ 160 V(Uint32Array_setIndexed, 3) \
161 V(Int64Array_new, 1) \ 161 V(Int64Array_new, 1) \
162 V(Int64Array_newTransferable, 1) \ 162 V(Int64List_newTransferable, 1) \
163 V(Int64Array_getIndexed, 2) \ 163 V(Int64Array_getIndexed, 2) \
164 V(Int64Array_setIndexed, 3) \ 164 V(Int64Array_setIndexed, 3) \
165 V(Uint64Array_new, 1) \ 165 V(Uint64Array_new, 1) \
166 V(Uint64Array_newTransferable, 1) \ 166 V(Uint64List_newTransferable, 1) \
167 V(Uint64Array_getIndexed, 2) \ 167 V(Uint64Array_getIndexed, 2) \
168 V(Uint64Array_setIndexed, 3) \ 168 V(Uint64Array_setIndexed, 3) \
169 V(Float32Array_new, 1) \ 169 V(Float32Array_new, 1) \
170 V(Float32Array_newTransferable, 1) \ 170 V(Float32List_newTransferable, 1) \
171 V(Float32Array_getIndexed, 2) \ 171 V(Float32Array_getIndexed, 2) \
172 V(Float32Array_setIndexed, 3) \ 172 V(Float32Array_setIndexed, 3) \
173 V(Float64Array_new, 1) \ 173 V(Float64Array_new, 1) \
174 V(Float64Array_newTransferable, 1) \ 174 V(Float64List_newTransferable, 1) \
175 V(Float64Array_getIndexed, 2) \ 175 V(Float64Array_getIndexed, 2) \
176 V(Float64Array_setIndexed, 3) \ 176 V(Float64Array_setIndexed, 3) \
177 V(ExternalInt8Array_getIndexed, 2) \ 177 V(ExternalInt8Array_getIndexed, 2) \
178 V(ExternalInt8Array_setIndexed, 3) \ 178 V(ExternalInt8Array_setIndexed, 3) \
179 V(ExternalUint8Array_getIndexed, 2) \ 179 V(ExternalUint8Array_getIndexed, 2) \
180 V(ExternalUint8Array_setIndexed, 3) \ 180 V(ExternalUint8Array_setIndexed, 3) \
181 V(ExternalUint8ClampedArray_getIndexed, 2) \ 181 V(ExternalUint8ClampedArray_getIndexed, 2) \
182 V(ExternalUint8ClampedArray_setIndexed, 3) \ 182 V(ExternalUint8ClampedArray_setIndexed, 3) \
183 V(ExternalInt16Array_getIndexed, 2) \ 183 V(ExternalInt16Array_getIndexed, 2) \
184 V(ExternalInt16Array_setIndexed, 3) \ 184 V(ExternalInt16Array_setIndexed, 3) \
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 static void DN_##name(Dart_NativeArguments args); 227 static void DN_##name(Dart_NativeArguments args);
228 228
229 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 229 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
230 230
231 #undef DECLARE_BOOTSTRAP_NATIVE 231 #undef DECLARE_BOOTSTRAP_NATIVE
232 }; 232 };
233 233
234 } // namespace dart 234 } // namespace dart
235 235
236 #endif // VM_BOOTSTRAP_NATIVES_H_ 236 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/byte_array.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698