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

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

Issue 1812673005: Use ICU case conversion/transliterator for case conversion behind a flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Yang's comment addressed - return right away for no-change Created 4 years, 7 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 "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/base/platform/time.h" 9 #include "src/base/platform/time.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 F(InternalNumberFormat, 2, 1) \ 256 F(InternalNumberFormat, 2, 1) \
257 F(InternalNumberParse, 2, 1) \ 257 F(InternalNumberParse, 2, 1) \
258 F(CreateCollator, 3, 1) \ 258 F(CreateCollator, 3, 1) \
259 F(InternalCompare, 3, 1) \ 259 F(InternalCompare, 3, 1) \
260 F(StringNormalize, 2, 1) \ 260 F(StringNormalize, 2, 1) \
261 F(CreateBreakIterator, 3, 1) \ 261 F(CreateBreakIterator, 3, 1) \
262 F(BreakIteratorAdoptText, 2, 1) \ 262 F(BreakIteratorAdoptText, 2, 1) \
263 F(BreakIteratorFirst, 1, 1) \ 263 F(BreakIteratorFirst, 1, 1) \
264 F(BreakIteratorNext, 1, 1) \ 264 F(BreakIteratorNext, 1, 1) \
265 F(BreakIteratorCurrent, 1, 1) \ 265 F(BreakIteratorCurrent, 1, 1) \
266 F(BreakIteratorBreakType, 1, 1) 266 F(BreakIteratorBreakType, 1, 1) \
267 F(StringToLowerCaseI18N, 1, 1) \
268 F(StringToUpperCaseI18N, 1, 1) \
269 F(StringLocaleConvertCase, 3, 1)
267 #else 270 #else
268 #define FOR_EACH_INTRINSIC_I18N(F) 271 #define FOR_EACH_INTRINSIC_I18N(F)
269 #endif 272 #endif
270 273
271 #define FOR_EACH_INTRINSIC_INTERNAL(F) \ 274 #define FOR_EACH_INTRINSIC_INTERNAL(F) \
272 F(CheckIsBootstrapping, 0, 1) \ 275 F(CheckIsBootstrapping, 0, 1) \
273 F(ExportFromRuntime, 1, 1) \ 276 F(ExportFromRuntime, 1, 1) \
274 F(ExportExperimentalFromRuntime, 1, 1) \ 277 F(ExportExperimentalFromRuntime, 1, 1) \
275 F(InstallToContext, 1, 1) \ 278 F(InstallToContext, 1, 1) \
276 F(Throw, 1, 1) \ 279 F(Throw, 1, 1) \
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 1169
1167 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1170 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1168 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1171 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1169 STATIC_ASSERT(LANGUAGE_END == 3); 1172 STATIC_ASSERT(LANGUAGE_END == 3);
1170 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1173 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1171 1174
1172 } // namespace internal 1175 } // namespace internal
1173 } // namespace v8 1176 } // namespace v8
1174 1177
1175 #endif // V8_RUNTIME_RUNTIME_H_ 1178 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698