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

Side by Side Diff: vm/symbols.h

Issue 11275008: - Represent strings internally in UTF-16 format, this makes it (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 1 month 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
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 V(Smi, "_Smi") \ 101 V(Smi, "_Smi") \
102 V(Mint, "_Mint") \ 102 V(Mint, "_Mint") \
103 V(Bigint, "_Bigint") \ 103 V(Bigint, "_Bigint") \
104 V(Double, "_Double") \ 104 V(Double, "_Double") \
105 V(Bool, "bool") \ 105 V(Bool, "bool") \
106 V(ObjectArray, "_ObjectArray") \ 106 V(ObjectArray, "_ObjectArray") \
107 V(GrowableObjectArray, "_GrowableObjectArray") \ 107 V(GrowableObjectArray, "_GrowableObjectArray") \
108 V(ImmutableArray, "_ImmutableArray") \ 108 V(ImmutableArray, "_ImmutableArray") \
109 V(OneByteString, "_OneByteString") \ 109 V(OneByteString, "_OneByteString") \
110 V(TwoByteString, "_TwoByteString") \ 110 V(TwoByteString, "_TwoByteString") \
111 V(FourByteString, "_FourByteString") \
112 V(ExternalOneByteString, "_ExternalOneByteString") \ 111 V(ExternalOneByteString, "_ExternalOneByteString") \
113 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 112 V(ExternalTwoByteString, "_ExternalTwoByteString") \
114 V(ExternalFourByteString, "_ExternalFourByteString") \
115 V(Stacktrace, "Stacktrace") \ 113 V(Stacktrace, "Stacktrace") \
116 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ 114 V(JSSyntaxRegExp, "JSSyntaxRegExp") \
117 V(Object, "Object") \ 115 V(Object, "Object") \
118 V(_Int8Array, "_Int8Array") \ 116 V(_Int8Array, "_Int8Array") \
119 V(_Uint8Array, "_Uint8Array") \ 117 V(_Uint8Array, "_Uint8Array") \
120 V(_Int16Array, "_Int16Array") \ 118 V(_Int16Array, "_Int16Array") \
121 V(_Uint16Array, "_Uint16Array") \ 119 V(_Uint16Array, "_Uint16Array") \
122 V(_Int32Array, "_Int32Array") \ 120 V(_Int32Array, "_Int32Array") \
123 V(_Uint32Array, "_Uint32Array") \ 121 V(_Uint32Array, "_Uint32Array") \
124 V(_Int64Array, "_Int64Array") \ 122 V(_Int64Array, "_Int64Array") \
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 friend class SnapshotReader; 221 friend class SnapshotReader;
224 friend class SnapshotWriter; 222 friend class SnapshotWriter;
225 friend class ApiMessageReader; 223 friend class ApiMessageReader;
226 224
227 DISALLOW_COPY_AND_ASSIGN(Symbols); 225 DISALLOW_COPY_AND_ASSIGN(Symbols);
228 }; 226 };
229 227
230 } // namespace dart 228 } // namespace dart
231 229
232 #endif // VM_SYMBOLS_H_ 230 #endif // VM_SYMBOLS_H_
OLDNEW
« vm/object.cc ('K') | « vm/stack_frame_test.cc ('k') | vm/symbols.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698