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

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

Issue 138033002: Make VM TypedList not implement ByteBuffer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove cast. Created 6 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/vm/snapshot_test.cc ('k') | sdk/lib/typed_data/typed_data.dart » ('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_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 V(_ExternalInt32Array, "_ExternalInt32Array") \ 211 V(_ExternalInt32Array, "_ExternalInt32Array") \
212 V(_ExternalUint32Array, "_ExternalUint32Array") \ 212 V(_ExternalUint32Array, "_ExternalUint32Array") \
213 V(_ExternalInt64Array, "_ExternalInt64Array") \ 213 V(_ExternalInt64Array, "_ExternalInt64Array") \
214 V(_ExternalUint64Array, "_ExternalUint64Array") \ 214 V(_ExternalUint64Array, "_ExternalUint64Array") \
215 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ 215 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \
216 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ 216 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \
217 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ 217 V(_ExternalFloat32Array, "_ExternalFloat32Array") \
218 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ 218 V(_ExternalFloat64Array, "_ExternalFloat64Array") \
219 V(ByteData, "ByteData") \ 219 V(ByteData, "ByteData") \
220 V(ByteDataDot, "ByteData.") \ 220 V(ByteDataDot, "ByteData.") \
221 V(ByteDataDotview, "ByteData.view") \ 221 V(ByteDataDot_view, "ByteData._view") \
222 V(_ByteDataView, "_ByteDataView") \ 222 V(_ByteDataView, "_ByteDataView") \
223 V(_WeakProperty, "_WeakProperty") \ 223 V(_WeakProperty, "_WeakProperty") \
224 V(_MirrorReference, "_MirrorReference") \ 224 V(_MirrorReference, "_MirrorReference") \
225 V(InvocationMirror, "_InvocationMirror") \ 225 V(InvocationMirror, "_InvocationMirror") \
226 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 226 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
227 V(toString, "toString") \ 227 V(toString, "toString") \
228 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ 228 V(_RawReceivePortImpl, "_RawReceivePortImpl") \
229 V(_lookupReceivePort, "_lookupReceivePort") \ 229 V(_lookupReceivePort, "_lookupReceivePort") \
230 V(_handleMessage, "_handleMessage") \ 230 V(_handleMessage, "_handleMessage") \
231 V(_SendPortImpl, "_SendPortImpl") \ 231 V(_SendPortImpl, "_SendPortImpl") \
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 friend class SnapshotReader; 511 friend class SnapshotReader;
512 friend class SnapshotWriter; 512 friend class SnapshotWriter;
513 friend class ApiMessageReader; 513 friend class ApiMessageReader;
514 514
515 DISALLOW_COPY_AND_ASSIGN(Symbols); 515 DISALLOW_COPY_AND_ASSIGN(Symbols);
516 }; 516 };
517 517
518 } // namespace dart 518 } // namespace dart
519 519
520 #endif // VM_SYMBOLS_H_ 520 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot_test.cc ('k') | sdk/lib/typed_data/typed_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698