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.h

Issue 2467006: Make StringCharCodeAt runtime function do what it name implies and not (Closed)
Patch Set: Created 10 years, 6 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
« no previous file with comments | « no previous file | 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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 \ 155 \
156 /* Regular expressions */ \ 156 /* Regular expressions */ \
157 F(RegExpCompile, 3, 1) \ 157 F(RegExpCompile, 3, 1) \
158 F(RegExpExec, 4, 1) \ 158 F(RegExpExec, 4, 1) \
159 F(RegExpExecMultiple, 4, 1) \ 159 F(RegExpExecMultiple, 4, 1) \
160 F(RegExpInitializeObject, 5, 1) \ 160 F(RegExpInitializeObject, 5, 1) \
161 F(RegExpConstructResult, 3, 1) \ 161 F(RegExpConstructResult, 3, 1) \
162 \ 162 \
163 /* Strings */ \ 163 /* Strings */ \
164 F(StringCharCodeAt, 2, 1) \ 164 F(StringCharCodeAt, 2, 1) \
165 F(StringCharAt, 2, 1) \
166 F(StringIndexOf, 3, 1) \ 165 F(StringIndexOf, 3, 1) \
167 F(StringLastIndexOf, 3, 1) \ 166 F(StringLastIndexOf, 3, 1) \
168 F(StringLocaleCompare, 2, 1) \ 167 F(StringLocaleCompare, 2, 1) \
169 F(SubString, 3, 1) \ 168 F(SubString, 3, 1) \
170 F(StringReplaceRegExpWithString, 4, 1) \ 169 F(StringReplaceRegExpWithString, 4, 1) \
171 F(StringMatch, 3, 1) \ 170 F(StringMatch, 3, 1) \
172 F(StringTrim, 3, 1) \ 171 F(StringTrim, 3, 1) \
173 F(StringToArray, 1, 1) \ 172 F(StringToArray, 1, 1) \
174 \ 173 \
175 /* Numbers */ \ 174 /* Numbers */ \
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 int position); 446 int position);
448 447
449 // Helper functions used stubs. 448 // Helper functions used stubs.
450 static void PerformGC(Object* result); 449 static void PerformGC(Object* result);
451 }; 450 };
452 451
453 452
454 } } // namespace v8::internal 453 } } // namespace v8::internal
455 454
456 #endif // V8_RUNTIME_H_ 455 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « no previous file | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698