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

Side by Side Diff: src/runtime/runtime.h

Issue 2736543002: [intl] Implement Intl.PluralRules
Patch Set: clarify comment Created 3 years, 9 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
OLDNEW
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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 F(IsInitializedIntlObjectOfType, 2, 1) \ 262 F(IsInitializedIntlObjectOfType, 2, 1) \
263 F(MarkAsInitializedIntlObjectOfType, 2, 1) \ 263 F(MarkAsInitializedIntlObjectOfType, 2, 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(CreateNumberFormat, 3, 1) \ 267 F(CreateNumberFormat, 3, 1) \
268 F(InternalNumberFormat, 2, 1) \ 268 F(InternalNumberFormat, 2, 1) \
269 F(CurrencyDigits, 1, 1) \ 269 F(CurrencyDigits, 1, 1) \
270 F(CreateCollator, 3, 1) \ 270 F(CreateCollator, 3, 1) \
271 F(InternalCompare, 3, 1) \ 271 F(InternalCompare, 3, 1) \
272 F(CreatePluralRules, 3, 1) \
273 F(PluralRulesSelect, 2, 1) \
272 F(StringNormalize, 2, 1) \ 274 F(StringNormalize, 2, 1) \
273 F(CreateBreakIterator, 3, 1) \ 275 F(CreateBreakIterator, 3, 1) \
274 F(BreakIteratorAdoptText, 2, 1) \ 276 F(BreakIteratorAdoptText, 2, 1) \
275 F(BreakIteratorFirst, 1, 1) \ 277 F(BreakIteratorFirst, 1, 1) \
276 F(BreakIteratorNext, 1, 1) \ 278 F(BreakIteratorNext, 1, 1) \
277 F(BreakIteratorCurrent, 1, 1) \ 279 F(BreakIteratorCurrent, 1, 1) \
278 F(BreakIteratorBreakType, 1, 1) \ 280 F(BreakIteratorBreakType, 1, 1) \
279 F(StringToLowerCaseI18N, 1, 1) \ 281 F(StringToLowerCaseI18N, 1, 1) \
280 F(StringToUpperCaseI18N, 1, 1) \ 282 F(StringToUpperCaseI18N, 1, 1) \
281 F(StringLocaleConvertCase, 3, 1) \ 283 F(StringLocaleConvertCase, 3, 1) \
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 kMaybeDeopted = 1 << 3, 856 kMaybeDeopted = 1 << 3,
855 kOptimized = 1 << 4, 857 kOptimized = 1 << 4,
856 kTurboFanned = 1 << 5, 858 kTurboFanned = 1 << 5,
857 kInterpreted = 1 << 6, 859 kInterpreted = 1 << 6,
858 }; 860 };
859 861
860 } // namespace internal 862 } // namespace internal
861 } // namespace v8 863 } // namespace v8
862 864
863 #endif // V8_RUNTIME_RUNTIME_H_ 865 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698