| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |