| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ | 168 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ |
| 169 V(_ExternalInt16Array, "_ExternalInt16Array") \ | 169 V(_ExternalInt16Array, "_ExternalInt16Array") \ |
| 170 V(_ExternalUint16Array, "_ExternalUint16Array") \ | 170 V(_ExternalUint16Array, "_ExternalUint16Array") \ |
| 171 V(_ExternalInt32Array, "_ExternalInt32Array") \ | 171 V(_ExternalInt32Array, "_ExternalInt32Array") \ |
| 172 V(_ExternalUint32Array, "_ExternalUint32Array") \ | 172 V(_ExternalUint32Array, "_ExternalUint32Array") \ |
| 173 V(_ExternalInt64Array, "_ExternalInt64Array") \ | 173 V(_ExternalInt64Array, "_ExternalInt64Array") \ |
| 174 V(_ExternalUint64Array, "_ExternalUint64Array") \ | 174 V(_ExternalUint64Array, "_ExternalUint64Array") \ |
| 175 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ | 175 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ |
| 176 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ | 176 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ |
| 177 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ | 177 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ |
| 178 V(ByteData, "ByteData") \ |
| 179 V(ByteDataDot, "ByteData.") \ |
| 180 V(ByteDataDotview, "ByteData.view") \ |
| 181 V(_ByteDataView, "_ByteDataView") \ |
| 178 V(_WeakProperty, "_WeakProperty") \ | 182 V(_WeakProperty, "_WeakProperty") \ |
| 179 V(InvocationMirror, "_InvocationMirror") \ | 183 V(InvocationMirror, "_InvocationMirror") \ |
| 180 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 184 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
| 181 V(toString, "toString") \ | 185 V(toString, "toString") \ |
| 182 V(_ReceivePortImpl, "_ReceivePortImpl") \ | 186 V(_ReceivePortImpl, "_ReceivePortImpl") \ |
| 183 V(_lookupReceivePort, "_lookupReceivePort") \ | 187 V(_lookupReceivePort, "_lookupReceivePort") \ |
| 184 V(_handleMessage, "_handleMessage") \ | 188 V(_handleMessage, "_handleMessage") \ |
| 185 V(_SendPortImpl, "_SendPortImpl") \ | 189 V(_SendPortImpl, "_SendPortImpl") \ |
| 186 V(_create, "_create") \ | 190 V(_create, "_create") \ |
| 187 V(_id, "_id") \ | 191 V(_id, "_id") \ |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 friend class SnapshotReader; | 425 friend class SnapshotReader; |
| 422 friend class SnapshotWriter; | 426 friend class SnapshotWriter; |
| 423 friend class ApiMessageReader; | 427 friend class ApiMessageReader; |
| 424 | 428 |
| 425 DISALLOW_COPY_AND_ASSIGN(Symbols); | 429 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 426 }; | 430 }; |
| 427 | 431 |
| 428 } // namespace dart | 432 } // namespace dart |
| 429 | 433 |
| 430 #endif // VM_SYMBOLS_H_ | 434 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |