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

Side by Side Diff: runtime/vm/intrinsifier_arm.cc

Issue 11230011: Make hasNext a getter instead of a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove unused variable. Created 8 years, 2 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 | « runtime/vm/intrinsifier.h ('k') | runtime/vm/intrinsifier_ia32.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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 bool Intrinsifier::Object_equal(Assembler* assembler) { 297 bool Intrinsifier::Object_equal(Assembler* assembler) {
298 return false; 298 return false;
299 } 299 }
300 300
301 301
302 bool Intrinsifier::FixedSizeArrayIterator_next(Assembler* assembler) { 302 bool Intrinsifier::FixedSizeArrayIterator_next(Assembler* assembler) {
303 return false; 303 return false;
304 } 304 }
305 305
306 306
307 bool Intrinsifier::FixedSizeArrayIterator_hasNext(Assembler* assembler) { 307 bool Intrinsifier::FixedSizeArrayIterator_getHasNext(Assembler* assembler) {
308 return false; 308 return false;
309 } 309 }
310 310
311 311
312 bool Intrinsifier::String_getHashCode(Assembler* assembler) { 312 bool Intrinsifier::String_getHashCode(Assembler* assembler) {
313 return false; 313 return false;
314 } 314 }
315 315
316 316
317 bool Intrinsifier::String_getLength(Assembler* assembler) { 317 bool Intrinsifier::String_getLength(Assembler* assembler) {
318 return false; 318 return false;
319 } 319 }
320 320
321 321
322 bool Intrinsifier::String_charCodeAt(Assembler* assembler) { 322 bool Intrinsifier::String_charCodeAt(Assembler* assembler) {
323 return false; 323 return false;
324 } 324 }
325 325
326 326
327 bool Intrinsifier::String_isEmpty(Assembler* assembler) { 327 bool Intrinsifier::String_isEmpty(Assembler* assembler) {
328 return false; 328 return false;
329 } 329 }
330 330
331 } // namespace dart 331 } // namespace dart
332 332
333 #endif // defined TARGET_ARCH_ARM 333 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier.h ('k') | runtime/vm/intrinsifier_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698