| 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 #ifndef VM_BOOTSTRAP_NATIVES_H_ | 5 #ifndef VM_BOOTSTRAP_NATIVES_H_ |
| 6 #define VM_BOOTSTRAP_NATIVES_H_ | 6 #define VM_BOOTSTRAP_NATIVES_H_ |
| 7 | 7 |
| 8 #include "vm/native_entry.h" | 8 #include "vm/native_entry.h" |
| 9 | 9 |
| 10 // bootstrap dart natives used in the core dart library. | 10 // bootstrap dart natives used in the core dart library. |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 V(JSSyntaxRegExp_getPattern, 1) \ | 82 V(JSSyntaxRegExp_getPattern, 1) \ |
| 83 V(JSSyntaxRegExp_getIsMultiLine, 1) \ | 83 V(JSSyntaxRegExp_getIsMultiLine, 1) \ |
| 84 V(JSSyntaxRegExp_getIsCaseSensitive, 1) \ | 84 V(JSSyntaxRegExp_getIsCaseSensitive, 1) \ |
| 85 V(JSSyntaxRegExp_getGroupCount, 1) \ | 85 V(JSSyntaxRegExp_getGroupCount, 1) \ |
| 86 V(JSSyntaxRegExp_ExecuteMatch, 3) \ | 86 V(JSSyntaxRegExp_ExecuteMatch, 3) \ |
| 87 V(List_allocate, 2) \ | 87 V(List_allocate, 2) \ |
| 88 V(List_getIndexed, 2) \ | 88 V(List_getIndexed, 2) \ |
| 89 V(List_setIndexed, 3) \ | 89 V(List_setIndexed, 3) \ |
| 90 V(List_getLength, 1) \ | 90 V(List_getLength, 1) \ |
| 91 V(List_copyFromObjectArray, 5) \ | 91 V(List_copyFromObjectArray, 5) \ |
| 92 V(ImmutableList_from, 4) \ |
| 92 V(StringBase_createFromCodePoints, 1) \ | 93 V(StringBase_createFromCodePoints, 1) \ |
| 93 V(StringBase_substringUnchecked, 3) \ | 94 V(StringBase_substringUnchecked, 3) \ |
| 94 V(StringBuffer_createStringFromUint16Array, 3) \ | 95 V(StringBuffer_createStringFromUint16Array, 3) \ |
| 95 V(OneByteString_substringUnchecked, 3) \ | 96 V(OneByteString_substringUnchecked, 3) \ |
| 96 V(OneByteString_splitWithCharCode, 2) \ | 97 V(OneByteString_splitWithCharCode, 2) \ |
| 97 V(OneByteString_allocate, 1) \ | 98 V(OneByteString_allocate, 1) \ |
| 98 V(OneByteString_allocateFromOneByteList, 1) \ | 99 V(OneByteString_allocateFromOneByteList, 1) \ |
| 99 V(OneByteString_setAt, 3) \ | 100 V(OneByteString_setAt, 3) \ |
| 100 V(ExternalOneByteString_getCid, 0) \ | 101 V(ExternalOneByteString_getCid, 0) \ |
| 101 V(String_getHashCode, 1) \ | 102 V(String_getHashCode, 1) \ |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 static void DN_##name(Dart_NativeArguments args); | 327 static void DN_##name(Dart_NativeArguments args); |
| 327 | 328 |
| 328 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 329 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 329 | 330 |
| 330 #undef DECLARE_BOOTSTRAP_NATIVE | 331 #undef DECLARE_BOOTSTRAP_NATIVE |
| 331 }; | 332 }; |
| 332 | 333 |
| 333 } // namespace dart | 334 } // namespace dart |
| 334 | 335 |
| 335 #endif // VM_BOOTSTRAP_NATIVES_H_ | 336 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |