| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 V(String_toLowerCase, 1) \ | 78 V(String_toLowerCase, 1) \ |
| 79 V(String_toUpperCase, 1) \ | 79 V(String_toUpperCase, 1) \ |
| 80 V(Strings_concatAll, 1) \ | 80 V(Strings_concatAll, 1) \ |
| 81 V(MathNatives_sqrt, 1) \ | 81 V(MathNatives_sqrt, 1) \ |
| 82 V(MathNatives_sin, 1) \ | 82 V(MathNatives_sin, 1) \ |
| 83 V(MathNatives_cos, 1) \ | 83 V(MathNatives_cos, 1) \ |
| 84 V(MathNatives_tan, 1) \ | 84 V(MathNatives_tan, 1) \ |
| 85 V(MathNatives_asin, 1) \ | 85 V(MathNatives_asin, 1) \ |
| 86 V(MathNatives_acos, 1) \ | 86 V(MathNatives_acos, 1) \ |
| 87 V(MathNatives_atan, 1) \ | 87 V(MathNatives_atan, 1) \ |
| 88 V(MathNatives_2atan, 2) \ | 88 V(MathNatives_atan2, 2) \ |
| 89 V(MathNatives_exp, 1) \ | 89 V(MathNatives_exp, 1) \ |
| 90 V(MathNatives_log, 1) \ | 90 V(MathNatives_log, 1) \ |
| 91 V(MathNatives_random, 0) \ | 91 V(MathNatives_random, 0) \ |
| 92 V(MathNatives_parseInt, 1) \ | 92 V(MathNatives_parseInt, 1) \ |
| 93 V(MathNatives_parseDouble, 1) \ | 93 V(MathNatives_parseDouble, 1) \ |
| 94 V(DateNatives_currentTimeMillis, 0) \ | 94 V(DateNatives_currentTimeMillis, 0) \ |
| 95 V(DateNatives_timeZoneName, 1) \ | 95 V(DateNatives_timeZoneName, 1) \ |
| 96 V(DateNatives_timeZoneOffsetInSeconds, 1) \ | 96 V(DateNatives_timeZoneOffsetInSeconds, 1) \ |
| 97 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \ | 97 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \ |
| 98 V(AssertionError_throwNew, 2) \ | 98 V(AssertionError_throwNew, 2) \ |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 V(GrowableObjectArray_getLength, 1) \ | 189 V(GrowableObjectArray_getLength, 1) \ |
| 190 V(GrowableObjectArray_getCapacity, 1) \ | 190 V(GrowableObjectArray_getCapacity, 1) \ |
| 191 V(GrowableObjectArray_setLength, 2) \ | 191 V(GrowableObjectArray_setLength, 2) \ |
| 192 V(GrowableObjectArray_setData, 2) \ | 192 V(GrowableObjectArray_setData, 2) \ |
| 193 | 193 |
| 194 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY) | 194 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY) |
| 195 | 195 |
| 196 } // namespace dart | 196 } // namespace dart |
| 197 | 197 |
| 198 #endif // VM_BOOTSTRAP_NATIVES_H_ | 198 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |