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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 F(AvailableLocalesOf, 1, 1) \ | 257 F(AvailableLocalesOf, 1, 1) \ |
258 F(GetDefaultICULocale, 0, 1) \ | 258 F(GetDefaultICULocale, 0, 1) \ |
259 F(GetLanguageTagVariants, 1, 1) \ | 259 F(GetLanguageTagVariants, 1, 1) \ |
260 F(IsInitializedIntlObject, 1, 1) \ | 260 F(IsInitializedIntlObject, 1, 1) \ |
261 F(IsInitializedIntlObjectOfType, 2, 1) \ | 261 F(IsInitializedIntlObjectOfType, 2, 1) \ |
262 F(MarkAsInitializedIntlObjectOfType, 3, 1) \ | 262 F(MarkAsInitializedIntlObjectOfType, 3, 1) \ |
263 F(GetImplFromInitializedIntlObject, 1, 1) \ | 263 F(GetImplFromInitializedIntlObject, 1, 1) \ |
264 F(CreateDateTimeFormat, 3, 1) \ | 264 F(CreateDateTimeFormat, 3, 1) \ |
265 F(InternalDateFormat, 2, 1) \ | 265 F(InternalDateFormat, 2, 1) \ |
266 F(InternalDateFormatToParts, 2, 1) \ | 266 F(InternalDateFormatToParts, 2, 1) \ |
267 F(InternalDateParse, 2, 1) \ | |
268 F(CreateNumberFormat, 3, 1) \ | 267 F(CreateNumberFormat, 3, 1) \ |
269 F(InternalNumberFormat, 2, 1) \ | 268 F(InternalNumberFormat, 2, 1) \ |
270 F(InternalNumberParse, 2, 1) \ | |
271 F(CreateCollator, 3, 1) \ | 269 F(CreateCollator, 3, 1) \ |
272 F(InternalCompare, 3, 1) \ | 270 F(InternalCompare, 3, 1) \ |
273 F(StringNormalize, 2, 1) \ | 271 F(StringNormalize, 2, 1) \ |
274 F(CreateBreakIterator, 3, 1) \ | 272 F(CreateBreakIterator, 3, 1) \ |
275 F(BreakIteratorAdoptText, 2, 1) \ | 273 F(BreakIteratorAdoptText, 2, 1) \ |
276 F(BreakIteratorFirst, 1, 1) \ | 274 F(BreakIteratorFirst, 1, 1) \ |
277 F(BreakIteratorNext, 1, 1) \ | 275 F(BreakIteratorNext, 1, 1) \ |
278 F(BreakIteratorCurrent, 1, 1) \ | 276 F(BreakIteratorCurrent, 1, 1) \ |
279 F(BreakIteratorBreakType, 1, 1) \ | 277 F(BreakIteratorBreakType, 1, 1) \ |
280 F(StringToLowerCaseI18N, 1, 1) \ | 278 F(StringToLowerCaseI18N, 1, 1) \ |
(...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1149 | 1147 |
1150 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1148 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1151 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1149 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1152 STATIC_ASSERT(LANGUAGE_END == 2); | 1150 STATIC_ASSERT(LANGUAGE_END == 2); |
1153 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1151 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
1154 | 1152 |
1155 } // namespace internal | 1153 } // namespace internal |
1156 } // namespace v8 | 1154 } // namespace v8 |
1157 | 1155 |
1158 #endif // V8_RUNTIME_RUNTIME_H_ | 1156 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |