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

Side by Side Diff: utils/testrunner/layout_test_controller.dart

Issue 12473003: Remove deprecated StringBuffer.add, addAll and addCharCode. (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
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 // The following set of variables should be set by the caller that 5 // The following set of variables should be set by the caller that
6 // #sources this file. 6 // #sources this file.
7 /** Whether to include elapsed time. */ 7 /** Whether to include elapsed time. */
8 8
9 part of test_controller; 9 part of test_controller;
10 10
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 var eol = '\n'.codeUnitAt(0); 235 var eol = '\n'.codeUnitAt(0);
236 var pos = -1; 236 var pos = -1;
237 var label = null; 237 var label = null;
238 var done = false; 238 var done = false;
239 239
240 while(pos < stdout.length) { 240 while(pos < stdout.length) {
241 var idx = stdout.indexOf(eol, ++pos); 241 var idx = stdout.indexOf(eol, ++pos);
242 if (idx < 0) break; 242 if (idx < 0) break;
243 StringBuffer sb = new StringBuffer(); 243 StringBuffer sb = new StringBuffer();
244 for (var i = pos; i < idx; i++) { 244 for (var i = pos; i < idx; i++) {
245 sb.addCharCode(stdout[i]); 245 sb.writeCharCode(stdout[i]);
246 } 246 }
247 var line = sb.toString(); 247 var line = sb.toString();
248 248
249 if (label == null && line.startsWith(labelMarker)) { 249 if (label == null && line.startsWith(labelMarker)) {
250 label = line.substring(labelMarker.length); 250 label = line.substring(labelMarker.length);
251 if (label == 'NONEXISTENT') { 251 if (label == 'NONEXISTENT') {
252 complete(); 252 complete();
253 } 253 }
254 } else if (line.startsWith(contentMarker)) { 254 } else if (line.startsWith(contentMarker)) {
255 if (label == null) { 255 if (label == null) {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 313
314 void runPixelLayoutTests() { 314 void runPixelLayoutTests() {
315 init(); 315 init();
316 runPixelLayoutTest(0); 316 runPixelLayoutTest(0);
317 } 317 }
318 318
319 void runTextLayoutTests() { 319 void runTextLayoutTests() {
320 init(); 320 init();
321 runTextLayoutTest(0); 321 runTextLayoutTest(0);
322 } 322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698