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

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

Issue 243973002: - Add a minimal implementation of Capability. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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') | 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_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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 V(_ListFactory, "_List.") \ 124 V(_ListFactory, "_List.") \
125 V(_GrowableList, "_GrowableList") \ 125 V(_GrowableList, "_GrowableList") \
126 V(_GrowableListFactory, "_GrowableList.") \ 126 V(_GrowableListFactory, "_GrowableList.") \
127 V(_GrowableListWithData, "_GrowableList.withData") \ 127 V(_GrowableListWithData, "_GrowableList.withData") \
128 V(_ImmutableList, "_ImmutableList") \ 128 V(_ImmutableList, "_ImmutableList") \
129 V(_String, "String") \ 129 V(_String, "String") \
130 V(OneByteString, "_OneByteString") \ 130 V(OneByteString, "_OneByteString") \
131 V(TwoByteString, "_TwoByteString") \ 131 V(TwoByteString, "_TwoByteString") \
132 V(ExternalOneByteString, "_ExternalOneByteString") \ 132 V(ExternalOneByteString, "_ExternalOneByteString") \
133 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 133 V(ExternalTwoByteString, "_ExternalTwoByteString") \
134 V(_CapabilityImpl, "_CapabilityImpl") \
135 V(_RawReceivePortImpl, "_RawReceivePortImpl") \
136 V(_SendPortImpl, "_SendPortImpl") \
134 V(StackTrace, "StackTrace") \ 137 V(StackTrace, "StackTrace") \
135 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 138 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
136 V(Object, "Object") \ 139 V(Object, "Object") \
137 V(Int, "int") \ 140 V(Int, "int") \
138 V(Double, "double") \ 141 V(Double, "double") \
139 V(_Float32x4, "_Float32x4") \ 142 V(_Float32x4, "_Float32x4") \
140 V(_Float64x2, "_Float64x2") \ 143 V(_Float64x2, "_Float64x2") \
141 V(_Int32x4, "_Int32x4") \ 144 V(_Int32x4, "_Int32x4") \
142 V(Float32x4, "Float32x4") \ 145 V(Float32x4, "Float32x4") \
143 V(Float64x2, "Float64x2") \ 146 V(Float64x2, "Float64x2") \
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ 231 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \
229 V(ByteData, "ByteData") \ 232 V(ByteData, "ByteData") \
230 V(ByteDataDot, "ByteData.") \ 233 V(ByteDataDot, "ByteData.") \
231 V(ByteDataDotview, "ByteData.view") \ 234 V(ByteDataDotview, "ByteData.view") \
232 V(_ByteDataView, "_ByteDataView") \ 235 V(_ByteDataView, "_ByteDataView") \
233 V(_WeakProperty, "_WeakProperty") \ 236 V(_WeakProperty, "_WeakProperty") \
234 V(_MirrorReference, "_MirrorReference") \ 237 V(_MirrorReference, "_MirrorReference") \
235 V(InvocationMirror, "_InvocationMirror") \ 238 V(InvocationMirror, "_InvocationMirror") \
236 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 239 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
237 V(toString, "toString") \ 240 V(toString, "toString") \
238 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ 241 V(_lookupHandler, "_lookupHandler") \
239 V(_lookupReceivePort, "_lookupReceivePort") \
240 V(_handleMessage, "_handleMessage") \ 242 V(_handleMessage, "_handleMessage") \
241 V(_SendPortImpl, "_SendPortImpl") \
242 V(_create, "_create") \
243 V(DotCreate, "._create") \ 243 V(DotCreate, "._create") \
244 V(DotWithType, "._withType") \ 244 V(DotWithType, "._withType") \
245 V(_id, "_id") \
246 V(_get, "_get") \ 245 V(_get, "_get") \
247 V(RangeError, "RangeError") \ 246 V(RangeError, "RangeError") \
248 V(ArgumentError, "ArgumentError") \ 247 V(ArgumentError, "ArgumentError") \
249 V(FormatException, "FormatException") \ 248 V(FormatException, "FormatException") \
250 V(UnsupportedError, "UnsupportedError") \ 249 V(UnsupportedError, "UnsupportedError") \
251 V(StackOverflowError, "StackOverflowError") \ 250 V(StackOverflowError, "StackOverflowError") \
252 V(OutOfMemoryError, "OutOfMemoryError") \ 251 V(OutOfMemoryError, "OutOfMemoryError") \
253 V(InternalError, "_InternalError") \ 252 V(InternalError, "_InternalError") \
254 V(NullThrownError, "NullThrownError") \ 253 V(NullThrownError, "NullThrownError") \
255 V(IsolateSpawnException, "IsolateSpawnException") \ 254 V(IsolateSpawnException, "IsolateSpawnException") \
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 friend class SnapshotReader; 529 friend class SnapshotReader;
531 friend class SnapshotWriter; 530 friend class SnapshotWriter;
532 friend class ApiMessageReader; 531 friend class ApiMessageReader;
533 532
534 DISALLOW_COPY_AND_ASSIGN(Symbols); 533 DISALLOW_COPY_AND_ASSIGN(Symbols);
535 }; 534 };
536 535
537 } // namespace dart 536 } // namespace dart
538 537
539 #endif // VM_SYMBOLS_H_ 538 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698