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

Unified Diff: runtime/lib/typeddata.dart

Issue 12531009: Fix typo in method calls for [] and []= operators in views. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/standalone/standalone.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/typeddata.dart
===================================================================
--- runtime/lib/typeddata.dart (revision 20003)
+++ runtime/lib/typeddata.dart (working copy)
@@ -1956,8 +1956,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getInt8(offsetInBytes +
- (index * Int8List.BYTES_PER_ELEMENT));
+ return _typeddata._getInt8(offsetInBytes +
+ (index * Int8List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -1965,8 +1965,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setInt8(offsetInBytes + (index * Int8List.BYTES_PER_ELEMENT),
- _toInt8(value));
+ _typeddata. setInt8(offsetInBytes + (index * Int8List.BYTES_PER_ELEMENT),
+ _toInt8(value));
}
Iterator<int> get iterator {
@@ -2002,8 +2002,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getUint8(offsetInBytes +
- (index * Uint8List.BYTES_PER_ELEMENT));
+ return _typeddata._getUint8(offsetInBytes +
+ (index * Uint8List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2011,8 +2011,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setUint8(offsetInBytes + (index * Uint8List.BYTES_PER_ELEMENT),
- _toUint8(value));
+ _typeddata._setUint8(offsetInBytes + (index * Uint8List.BYTES_PER_ELEMENT),
+ _toUint8(value));
}
Iterator<int> get iterator {
@@ -2049,8 +2049,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getUint8(offsetInBytes +
- (index * Uint8List.BYTES_PER_ELEMENT));
+ return _typeddata._getUint8(offsetInBytes +
+ (index * Uint8List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2058,8 +2058,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setUint8(offsetInBytes + (index * Uint8List.BYTES_PER_ELEMENT),
- _toClampedUint8(value));
+ _typeddata._setUint8(offsetInBytes + (index * Uint8List.BYTES_PER_ELEMENT),
+ _toClampedUint8(value));
}
Iterator<int> get iterator {
@@ -2095,8 +2095,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getInt16(offsetInBytes +
- (index * Int16List.BYTES_PER_ELEMENT));
+ return _typeddata._getInt16(offsetInBytes +
+ (index * Int16List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2104,8 +2104,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setInt16(offsetInBytes + (index * Int16List.BYTES_PER_ELEMENT),
- _toInt16(value));
+ _typeddata._setInt16(offsetInBytes + (index * Int16List.BYTES_PER_ELEMENT),
+ _toInt16(value));
}
Iterator<int> get iterator {
@@ -2141,8 +2141,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getUint16(offsetInBytes +
- (index * Uint16List.BYTES_PER_ELEMENT));
+ return _typeddata._getUint16(offsetInBytes +
+ (index * Uint16List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2150,8 +2150,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setUint16(offsetInBytes + (index * Uint16List.BYTES_PER_ELEMENT),
- _toUint16(value));
+ _typeddata._setUint16(offsetInBytes + (index * Uint16List.BYTES_PER_ELEMENT),
+ _toUint16(value));
}
Iterator<int> get iterator {
@@ -2187,8 +2187,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getInt32(offsetInBytes +
- (index * Int32List.BYTES_PER_ELEMENT));
+ return _typeddata._getInt32(offsetInBytes +
+ (index * Int32List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2196,8 +2196,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setInt32(offsetInBytes + (index * Int32List.BYTES_PER_ELEMENT),
- _toInt32(value));
+ _typeddata._setInt32(offsetInBytes + (index * Int32List.BYTES_PER_ELEMENT),
+ _toInt32(value));
}
Iterator<int> get iterator {
@@ -2233,8 +2233,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getUint32(offsetInBytes +
- (index * Uint32List.BYTES_PER_ELEMENT));
+ return _typeddata._getUint32(offsetInBytes +
+ (index * Uint32List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2242,8 +2242,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setUint32(offsetInBytes + (index * Uint32List.BYTES_PER_ELEMENT),
- _toUint32(value));
+ _typeddata._setUint32(offsetInBytes + (index * Uint32List.BYTES_PER_ELEMENT),
+ _toUint32(value));
}
Iterator<int> get iterator {
@@ -2279,8 +2279,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getInt64(offsetInBytes +
- (index * Int64List.BYTES_PER_ELEMENT));
+ return _typeddata._getInt64(offsetInBytes +
+ (index * Int64List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2288,8 +2288,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setInt64(offsetInBytes + (index * Int64List.BYTES_PER_ELEMENT),
- _toInt64(value));
+ _typeddata._setInt64(offsetInBytes + (index * Int64List.BYTES_PER_ELEMENT),
+ _toInt64(value));
}
Iterator<int> get iterator {
@@ -2325,8 +2325,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getUint64(offsetInBytes +
- (index * Uint64List.BYTES_PER_ELEMENT));
+ return _typeddata._getUint64(offsetInBytes +
+ (index * Uint64List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, int value) {
@@ -2334,8 +2334,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setUint64(offsetInBytes + (index * Uint64List.BYTES_PER_ELEMENT),
- _toUint64(value));
+ _typeddata._setUint64(offsetInBytes + (index * Uint64List.BYTES_PER_ELEMENT),
+ _toUint64(value));
}
Iterator<int> get iterator {
@@ -2371,8 +2371,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getFloat32(offsetInBytes +
- (index * Float32List.BYTES_PER_ELEMENT));
+ return _typeddata._getFloat32(offsetInBytes +
+ (index * Float32List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, double value) {
@@ -2380,8 +2380,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setFloat32(offsetInBytes +
- (index * Float32List.BYTES_PER_ELEMENT), value);
+ _typeddata._setFloat32(offsetInBytes +
+ (index * Float32List.BYTES_PER_ELEMENT), value);
}
Iterator<double> get iterator {
@@ -2417,8 +2417,8 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- return _typeddata.getFloat64(offsetInBytes +
- (index * Float64List.BYTES_PER_ELEMENT));
+ return _typeddata._getFloat64(offsetInBytes +
+ (index * Float64List.BYTES_PER_ELEMENT));
}
void operator[]=(int index, double value) {
@@ -2426,7 +2426,7 @@
String message = "$index must be in the range [0..$length)";
throw new RangeError(message);
}
- _typeddata.setFloat64(offsetInBytes +
+ _typeddata._setFloat64(offsetInBytes +
(index * Float64List.BYTES_PER_ELEMENT), value);
}
« no previous file with comments | « no previous file | tests/standalone/standalone.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698