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

Side by Side Diff: sdk/lib/convert/encoding.dart

Issue 2974433002: Remaining private libs (Closed)
Patch Set: It's html_common Created 3 years, 5 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
« no previous file with comments | « sdk/lib/convert/converter.dart ('k') | sdk/lib/convert/html_escape.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 "convert.dart"; 5 part of "dart:convert";
6 6
7 /** 7 /**
8 * Open-ended Encoding enum. 8 * Open-ended Encoding enum.
9 */ 9 */
10 abstract class Encoding extends Codec<String, List<int>> { 10 abstract class Encoding extends Codec<String, List<int>> {
11 const Encoding(); 11 const Encoding();
12 12
13 Converter<String, List<int>> get encoder; 13 Converter<String, List<int>> get encoder;
14 Converter<List<int>, String> get decoder; 14 Converter<List<int>, String> get decoder;
15 15
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 * The [name] passed is case insensitive. 70 * The [name] passed is case insensitive.
71 * 71 *
72 * If character set is not supported [:null:] is returned. 72 * If character set is not supported [:null:] is returned.
73 */ 73 */
74 static Encoding getByName(String name) { 74 static Encoding getByName(String name) {
75 if (name == null) return null; 75 if (name == null) return null;
76 name = name.toLowerCase(); 76 name = name.toLowerCase();
77 return _nameToEncoding[name]; 77 return _nameToEncoding[name];
78 } 78 }
79 } 79 }
OLDNEW
« no previous file with comments | « sdk/lib/convert/converter.dart ('k') | sdk/lib/convert/html_escape.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698