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

Side by Side Diff: sdk/lib/utf/utf16.dart

Issue 12282038: Remove deprecated string features. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head Created 7 years, 10 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 | « sdk/lib/uri/encode_decode.dart ('k') | sdk/lib/utf/utf_core.dart » ('j') | 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 part of dart.utf; 5 part of dart.utf;
6 6
7 /** 7 /**
8 * Decodes the UTF-16 bytes as an iterable. Thus, the consumer can only convert 8 * Decodes the UTF-16 bytes as an iterable. Thus, the consumer can only convert
9 * as much of the input as needed. Determines the byte order from the BOM, 9 * as much of the input as needed. Determines the byte order from the BOM,
10 * or uses big-endian as a default. This method always strips a leading BOM. 10 * or uses big-endian as a default. This method always strips a leading BOM.
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 * little-endian byte-order marker (BOM). 171 * little-endian byte-order marker (BOM).
172 */ 172 */
173 bool hasUtf16leBom(List<int> utf16EncodedBytes, [int offset = 0, int length]) { 173 bool hasUtf16leBom(List<int> utf16EncodedBytes, [int offset = 0, int length]) {
174 int end = length != null ? offset + length : utf16EncodedBytes.length; 174 int end = length != null ? offset + length : utf16EncodedBytes.length;
175 return (offset + 2) <= end && 175 return (offset + 2) <= end &&
176 utf16EncodedBytes[offset] == UNICODE_UTF_BOM_LO && 176 utf16EncodedBytes[offset] == UNICODE_UTF_BOM_LO &&
177 utf16EncodedBytes[offset + 1] == UNICODE_UTF_BOM_HI; 177 utf16EncodedBytes[offset + 1] == UNICODE_UTF_BOM_HI;
178 } 178 }
179 179
180 List<int> _stringToUtf16CodeUnits(String str) { 180 List<int> _stringToUtf16CodeUnits(String str) {
181 return _codepointsToUtf16CodeUnits(str.charCodes); 181 return _codepointsToUtf16CodeUnits(str.codeUnits);
182 } 182 }
183 183
184 typedef _ListRangeIterator _CodeUnitsProvider(); 184 typedef _ListRangeIterator _CodeUnitsProvider();
185 185
186 /** 186 /**
187 * Return type of [decodeUtf16AsIterable] and variants. The Iterable type 187 * Return type of [decodeUtf16AsIterable] and variants. The Iterable type
188 * provides an iterator on demand and the iterator will only translate bytes 188 * provides an iterator on demand and the iterator will only translate bytes
189 * as requested by the user of the iterator. (Note: results are not cached.) 189 * as requested by the user of the iterator. (Note: results are not cached.)
190 */ 190 */
191 // TODO(floitsch): Consider removing the extend and switch to implements since 191 // TODO(floitsch): Consider removing the extend and switch to implements since
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 } 328 }
329 329
330 int decode() { 330 int decode() {
331 utf16EncodedBytesIterator.moveNext(); 331 utf16EncodedBytesIterator.moveNext();
332 int lo = utf16EncodedBytesIterator.current; 332 int lo = utf16EncodedBytesIterator.current;
333 utf16EncodedBytesIterator.moveNext(); 333 utf16EncodedBytesIterator.moveNext();
334 int hi = utf16EncodedBytesIterator.current; 334 int hi = utf16EncodedBytesIterator.current;
335 return (hi << 8) + lo; 335 return (hi << 8) + lo;
336 } 336 }
337 } 337 }
OLDNEW
« no previous file with comments | « sdk/lib/uri/encode_decode.dart ('k') | sdk/lib/utf/utf_core.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698