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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/observatory/application.dart

Issue 51653006: Track live instance and allocation counts for classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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) 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 observatory; 5 part of observatory;
6 6
7 /// The observatory application. Instances of this are created and owned 7 /// The observatory application. Instances of this are created and owned
8 /// by the observatory_application custom element. 8 /// by the observatory_application custom element.
9 class ObservatoryApplication extends Observable { 9 class ObservatoryApplication extends Observable {
10 @observable final LocationManager locationManager; 10 @observable final LocationManager locationManager;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 44
45 /// Return the name of the isolate with [id]. 45 /// Return the name of the isolate with [id].
46 String getIsolateName(int id) { 46 String getIsolateName(int id) {
47 var isolate = getIsolate(id); 47 var isolate = getIsolate(id);
48 if (isolate == null) { 48 if (isolate == null) {
49 return 'Null Isolate'; 49 return 'Null Isolate';
50 } 50 }
51 return isolate.name; 51 return isolate.name;
52 } 52 }
53
54 static const int KB = 1024;
55 static const int MB = KB * 1024;
56 static String scaledSizeUnits(int x) {
57 if (x > 2 * MB) {
58 var y = x / MB;
59 return '${y.toStringAsFixed(1)} MB';
60 } else if (x > 2 * KB) {
61 var y = x / KB;
62 return '${y.toStringAsFixed(1)} KB';
63 }
64 var y = x.toDouble();
65 return '${y.toStringAsFixed(1)} B';
66 }
67
68 static String timeUnits(double x) {
69 return x.toStringAsFixed(4);
70 }
53 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698