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

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: working with icu-case-mapping.js manually compiled in; gyp change not picking it up 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 F(InternalNumberFormat, 2, 1) \ 257 F(InternalNumberFormat, 2, 1) \
258 F(InternalNumberParse, 2, 1) \ 258 F(InternalNumberParse, 2, 1) \
259 F(CreateCollator, 3, 1) \ 259 F(CreateCollator, 3, 1) \
260 F(InternalCompare, 3, 1) \ 260 F(InternalCompare, 3, 1) \
261 F(StringNormalize, 2, 1) \ 261 F(StringNormalize, 2, 1) \
262 F(CreateBreakIterator, 3, 1) \ 262 F(CreateBreakIterator, 3, 1) \
263 F(BreakIteratorAdoptText, 2, 1) \ 263 F(BreakIteratorAdoptText, 2, 1) \
264 F(BreakIteratorFirst, 1, 1) \ 264 F(BreakIteratorFirst, 1, 1) \
265 F(BreakIteratorNext, 1, 1) \ 265 F(BreakIteratorNext, 1, 1) \
266 F(BreakIteratorCurrent, 1, 1) \ 266 F(BreakIteratorCurrent, 1, 1) \
267 F(BreakIteratorBreakType, 1, 1) 267 F(BreakIteratorBreakType, 1, 1) \
268 F(StringToLowerCaseI18N, 1, 1) \
269 F(StringToUpperCaseI18N, 1, 1) \
270 F(StringLocaleConvertCase, 3, 1)
268 #else 271 #else
269 #define FOR_EACH_INTRINSIC_I18N(F) 272 #define FOR_EACH_INTRINSIC_I18N(F)
270 #endif 273 #endif
271 274
272 #define FOR_EACH_INTRINSIC_INTERNAL(F) \ 275 #define FOR_EACH_INTRINSIC_INTERNAL(F) \
273 F(CheckIsBootstrapping, 0, 1) \ 276 F(CheckIsBootstrapping, 0, 1) \
274 F(ExportFromRuntime, 1, 1) \ 277 F(ExportFromRuntime, 1, 1) \
275 F(ExportExperimentalFromRuntime, 1, 1) \ 278 F(ExportExperimentalFromRuntime, 1, 1) \
276 F(InstallToContext, 1, 1) \ 279 F(InstallToContext, 1, 1) \
277 F(Throw, 1, 1) \ 280 F(Throw, 1, 1) \
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
1168 1171
1169 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1172 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1170 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1173 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1171 STATIC_ASSERT(LANGUAGE_END == 3); 1174 STATIC_ASSERT(LANGUAGE_END == 3);
1172 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1175 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1173 1176
1174 } // namespace internal 1177 } // namespace internal
1175 } // namespace v8 1178 } // namespace v8
1176 1179
1177 #endif // V8_RUNTIME_RUNTIME_H_ 1180 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698