OLD | NEW |
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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_getIsEmpty(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 |
OLD | NEW |