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

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 10831327: Update stopwatch to use patching to share sources instead of exposing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/lib/stopwatch_patch.dart ('k') | no next file » | 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 #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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 V(MathNatives_parseInt, 1) \ 91 V(MathNatives_parseInt, 1) \
92 V(MathNatives_parseDouble, 1) \ 92 V(MathNatives_parseDouble, 1) \
93 V(DateNatives_currentTimeMillis, 0) \ 93 V(DateNatives_currentTimeMillis, 0) \
94 V(DateNatives_timeZoneName, 1) \ 94 V(DateNatives_timeZoneName, 1) \
95 V(DateNatives_timeZoneOffsetInSeconds, 1) \ 95 V(DateNatives_timeZoneOffsetInSeconds, 1) \
96 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \ 96 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \
97 V(AssertionError_throwNew, 2) \ 97 V(AssertionError_throwNew, 2) \
98 V(TypeError_throwNew, 5) \ 98 V(TypeError_throwNew, 5) \
99 V(FallThroughError_throwNew, 1) \ 99 V(FallThroughError_throwNew, 1) \
100 V(StaticResolutionException_throwNew, 1) \ 100 V(StaticResolutionException_throwNew, 1) \
101 V(Clock_now, 0) \ 101 V(Stopwatch_now, 0) \
102 V(Clock_frequency, 0) \ 102 V(Stopwatch_frequency, 0) \
103 V(ByteArray_getLength, 1) \ 103 V(ByteArray_getLength, 1) \
104 V(ByteArray_getInt8, 2) \ 104 V(ByteArray_getInt8, 2) \
105 V(ByteArray_setInt8, 3) \ 105 V(ByteArray_setInt8, 3) \
106 V(ByteArray_getUint8, 2) \ 106 V(ByteArray_getUint8, 2) \
107 V(ByteArray_setUint8, 3) \ 107 V(ByteArray_setUint8, 3) \
108 V(ByteArray_getInt16, 2) \ 108 V(ByteArray_getInt16, 2) \
109 V(ByteArray_setInt16, 3) \ 109 V(ByteArray_setInt16, 3) \
110 V(ByteArray_getUint16, 2) \ 110 V(ByteArray_getUint16, 2) \
111 V(ByteArray_setUint16, 3) \ 111 V(ByteArray_setUint16, 3) \
112 V(ByteArray_getInt32, 2) \ 112 V(ByteArray_getInt32, 2) \
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « runtime/lib/stopwatch_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698