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

Side by Side Diff: utils/tests/string_encoding/utf8_benchmarks.dart

Issue 12794002: Move Options to dart:io. (Closed) Base URL: https://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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/tests/string_encoding/benchmark_runner.dart ('k') | 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 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 5
6 library BenchmarkTests; 6 library BenchmarkTests;
7 import 'dart:io';
7 import 'dart:math' as Math; 8 import 'dart:math' as Math;
8 import '../../../lib/utf/utf.dart' as SE; 9 import '../../../lib/utf/utf.dart' as SE;
9 part 'benchmark_runner.dart'; 10 part 'benchmark_runner.dart';
10 11
11 void main() { 12 void main() {
12 13
13 final List<int> testEnglishUtf8 = const<int> [ 14 final List<int> testEnglishUtf8 = const<int> [
14 0x54, 0x68, 0x65, 0x20, 0x71, 0x75, 0x69, 0x63, 15 0x54, 0x68, 0x65, 0x20, 0x71, 0x75, 0x69, 0x63,
15 0x6b, 0x20, 0x62, 0x72, 0x6f, 0x77, 0x6e, 0x20, 16 0x6b, 0x20, 0x62, 0x72, 0x6f, 0x77, 0x6e, 0x20,
16 0x66, 0x6f, 0x78, 0x20, 0x6a, 0x75, 0x6d, 0x70, 17 0x66, 0x6f, 0x78, 0x20, 0x6a, 0x75, 0x6d, 0x70,
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 117
117 BenchmarkRunner.runTimed("SE_EL1","string_encoding/decodeUtf8-Greek", 118 BenchmarkRunner.runTimed("SE_EL1","string_encoding/decodeUtf8-Greek",
118 testConfig_1sec, () => 119 testConfig_1sec, () =>
119 (new SE.Utf8Decoder(testGreekUtf8)).decodeRest()); 120 (new SE.Utf8Decoder(testGreekUtf8)).decodeRest());
120 121
121 BenchmarkRunner.runTimed("SE_JA1","string_encoding/decodeUtf8-Katakana", 122 BenchmarkRunner.runTimed("SE_JA1","string_encoding/decodeUtf8-Katakana",
122 testConfig_1sec, () => 123 testConfig_1sec, () =>
123 (new SE.Utf8Decoder(testKatakanaUtf8)).decodeRest()); 124 (new SE.Utf8Decoder(testKatakanaUtf8)).decodeRest());
124 } 125 }
125 126
OLDNEW
« no previous file with comments | « utils/tests/string_encoding/benchmark_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698