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

Side by Side Diff: lib/html/doc/interface/DataView.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName DataView
10 interface DataView extends ArrayBufferView {
11
12 /** @domName DataView.getFloat32 */
13 num getFloat32(int byteOffset, [bool littleEndian]);
14
15 /** @domName DataView.getFloat64 */
16 num getFloat64(int byteOffset, [bool littleEndian]);
17
18 /** @domName DataView.getInt16 */
19 int getInt16(int byteOffset, [bool littleEndian]);
20
21 /** @domName DataView.getInt32 */
22 int getInt32(int byteOffset, [bool littleEndian]);
23
24 /** @domName DataView.getInt8 */
25 Object getInt8();
26
27 /** @domName DataView.getUint16 */
28 int getUint16(int byteOffset, [bool littleEndian]);
29
30 /** @domName DataView.getUint32 */
31 int getUint32(int byteOffset, [bool littleEndian]);
32
33 /** @domName DataView.getUint8 */
34 Object getUint8();
35
36 /** @domName DataView.setFloat32 */
37 void setFloat32(int byteOffset, num value, [bool littleEndian]);
38
39 /** @domName DataView.setFloat64 */
40 void setFloat64(int byteOffset, num value, [bool littleEndian]);
41
42 /** @domName DataView.setInt16 */
43 void setInt16(int byteOffset, int value, [bool littleEndian]);
44
45 /** @domName DataView.setInt32 */
46 void setInt32(int byteOffset, int value, [bool littleEndian]);
47
48 /** @domName DataView.setInt8 */
49 void setInt8();
50
51 /** @domName DataView.setUint16 */
52 void setUint16(int byteOffset, int value, [bool littleEndian]);
53
54 /** @domName DataView.setUint32 */
55 void setUint32(int byteOffset, int value, [bool littleEndian]);
56
57 /** @domName DataView.setUint8 */
58 void setUint8();
59 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/DataTransferItemList.dartdoc ('k') | lib/html/doc/interface/Database.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698