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

Side by Side Diff: runtime/include/dart_api.h

Issue 11360023: Remove extra vertical white space. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « no previous file | 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 INCLUDE_DART_API_H_ 5 #ifndef INCLUDE_DART_API_H_
6 #define INCLUDE_DART_API_H_ 6 #define INCLUDE_DART_API_H_
7 7
8 /** \mainpage Dart Embedding API Reference 8 /** \mainpage Dart Embedding API Reference
9 * 9 *
10 * Dart is a class-based programming language for creating structured 10 * Dart is a class-based programming language for creating structured
(...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 */ 1316 */
1317 DART_EXPORT Dart_Handle Dart_DoubleValue(Dart_Handle double_obj, double* value); 1317 DART_EXPORT Dart_Handle Dart_DoubleValue(Dart_Handle double_obj, double* value);
1318 1318
1319 // --- Strings --- 1319 // --- Strings ---
1320 1320
1321 /** 1321 /**
1322 * Is this object a String? 1322 * Is this object a String?
1323 */ 1323 */
1324 DART_EXPORT bool Dart_IsString(Dart_Handle object); 1324 DART_EXPORT bool Dart_IsString(Dart_Handle object);
1325 1325
1326
1327 /** 1326 /**
1328 * Is this object an ASCII String? 1327 * Is this object an ASCII String?
1329 */ 1328 */
1330 DART_EXPORT bool Dart_IsAsciiString(Dart_Handle object); 1329 DART_EXPORT bool Dart_IsAsciiString(Dart_Handle object);
1331 1330
1332
1333 /** 1331 /**
1334 * Gets the length of a String. 1332 * Gets the length of a String.
1335 * 1333 *
1336 * \param str A String. 1334 * \param str A String.
1337 * \param length Returns the length of the String. 1335 * \param length Returns the length of the String.
1338 * 1336 *
1339 * \return A valid handle if no error occurs during the operation. 1337 * \return A valid handle if no error occurs during the operation.
1340 */ 1338 */
1341 DART_EXPORT Dart_Handle Dart_StringLength(Dart_Handle str, intptr_t* length); 1339 DART_EXPORT Dart_Handle Dart_StringLength(Dart_Handle str, intptr_t* length);
1342 1340
(...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after
2717 * 2715 *
2718 * \param object An object. 2716 * \param object An object.
2719 * \param peer A value to store in the peer field. 2717 * \param peer A value to store in the peer field.
2720 * 2718 *
2721 * \return Returns an error if 'object' is a subtype of Null, num, or 2719 * \return Returns an error if 'object' is a subtype of Null, num, or
2722 * bool. 2720 * bool.
2723 */ 2721 */
2724 DART_EXPORT Dart_Handle Dart_SetPeer(Dart_Handle object, void* peer); 2722 DART_EXPORT Dart_Handle Dart_SetPeer(Dart_Handle object, void* peer);
2725 2723
2726 #endif // INCLUDE_DART_API_H_ 2724 #endif // INCLUDE_DART_API_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698