OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 242 matching lines...) Loading... |
253 F(CanonicalizeLanguageTag, 1, 1) \ | 253 F(CanonicalizeLanguageTag, 1, 1) \ |
254 F(AvailableLocalesOf, 1, 1) \ | 254 F(AvailableLocalesOf, 1, 1) \ |
255 F(GetDefaultICULocale, 0, 1) \ | 255 F(GetDefaultICULocale, 0, 1) \ |
256 F(GetLanguageTagVariants, 1, 1) \ | 256 F(GetLanguageTagVariants, 1, 1) \ |
257 F(IsInitializedIntlObject, 1, 1) \ | 257 F(IsInitializedIntlObject, 1, 1) \ |
258 F(IsInitializedIntlObjectOfType, 2, 1) \ | 258 F(IsInitializedIntlObjectOfType, 2, 1) \ |
259 F(MarkAsInitializedIntlObjectOfType, 3, 1) \ | 259 F(MarkAsInitializedIntlObjectOfType, 3, 1) \ |
260 F(GetImplFromInitializedIntlObject, 1, 1) \ | 260 F(GetImplFromInitializedIntlObject, 1, 1) \ |
261 F(CreateDateTimeFormat, 3, 1) \ | 261 F(CreateDateTimeFormat, 3, 1) \ |
262 F(InternalDateFormat, 2, 1) \ | 262 F(InternalDateFormat, 2, 1) \ |
| 263 F(InternalDateFormatToParts, 2, 1) \ |
263 F(InternalDateParse, 2, 1) \ | 264 F(InternalDateParse, 2, 1) \ |
264 F(CreateNumberFormat, 3, 1) \ | 265 F(CreateNumberFormat, 3, 1) \ |
265 F(InternalNumberFormat, 2, 1) \ | 266 F(InternalNumberFormat, 2, 1) \ |
266 F(InternalNumberParse, 2, 1) \ | 267 F(InternalNumberParse, 2, 1) \ |
267 F(CreateCollator, 3, 1) \ | 268 F(CreateCollator, 3, 1) \ |
268 F(InternalCompare, 3, 1) \ | 269 F(InternalCompare, 3, 1) \ |
269 F(StringNormalize, 2, 1) \ | 270 F(StringNormalize, 2, 1) \ |
270 F(CreateBreakIterator, 3, 1) \ | 271 F(CreateBreakIterator, 3, 1) \ |
271 F(BreakIteratorAdoptText, 2, 1) \ | 272 F(BreakIteratorAdoptText, 2, 1) \ |
272 F(BreakIteratorFirst, 1, 1) \ | 273 F(BreakIteratorFirst, 1, 1) \ |
(...skipping 849 matching lines...) Loading... |
1122 | 1123 |
1123 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1124 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1124 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1125 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1125 STATIC_ASSERT(LANGUAGE_END == 2); | 1126 STATIC_ASSERT(LANGUAGE_END == 2); |
1126 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1127 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
1127 | 1128 |
1128 } // namespace internal | 1129 } // namespace internal |
1129 } // namespace v8 | 1130 } // namespace v8 |
1130 | 1131 |
1131 #endif // V8_RUNTIME_RUNTIME_H_ | 1132 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |