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

Side by Side Diff: src/runtime.h

Issue 225283019: Merged r20375 into 3.24 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.24
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 | « src/i18n.js ('k') | src/runtime.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 547
548 548
549 #ifdef V8_I18N_SUPPORT 549 #ifdef V8_I18N_SUPPORT
550 #define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) \ 550 #define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) \
551 /* i18n support */ \ 551 /* i18n support */ \
552 /* Standalone, helper methods. */ \ 552 /* Standalone, helper methods. */ \
553 F(CanonicalizeLanguageTag, 1, 1) \ 553 F(CanonicalizeLanguageTag, 1, 1) \
554 F(AvailableLocalesOf, 1, 1) \ 554 F(AvailableLocalesOf, 1, 1) \
555 F(GetDefaultICULocale, 0, 1) \ 555 F(GetDefaultICULocale, 0, 1) \
556 F(GetLanguageTagVariants, 1, 1) \ 556 F(GetLanguageTagVariants, 1, 1) \
557 F(IsInitializedIntlObject, 1, 1) \
558 F(IsInitializedIntlObjectOfType, 2, 1) \
559 F(MarkAsInitializedIntlObjectOfType, 3, 1) \
560 F(GetImplFromInitializedIntlObject, 1, 1) \
557 \ 561 \
558 /* Date format and parse. */ \ 562 /* Date format and parse. */ \
559 F(CreateDateTimeFormat, 3, 1) \ 563 F(CreateDateTimeFormat, 3, 1) \
560 F(InternalDateFormat, 2, 1) \ 564 F(InternalDateFormat, 2, 1) \
561 F(InternalDateParse, 2, 1) \ 565 F(InternalDateParse, 2, 1) \
562 \ 566 \
563 /* Number format and parse. */ \ 567 /* Number format and parse. */ \
564 F(CreateNumberFormat, 3, 1) \ 568 F(CreateNumberFormat, 3, 1) \
565 F(InternalNumberFormat, 2, 1) \ 569 F(InternalNumberFormat, 2, 1) \
566 F(InternalNumberParse, 2, 1) \ 570 F(InternalNumberParse, 2, 1) \
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; 871 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {};
868 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; 872 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {};
869 873
870 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 874 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
871 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 875 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
872 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 876 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
873 877
874 } } // namespace v8::internal 878 } } // namespace v8::internal
875 879
876 #endif // V8_RUNTIME_H_ 880 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/i18n.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698