OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aggregatedStats
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/app/usage/
UsageStatsManager.java
207
ArrayMap<String, UsageStats>
aggregatedStats
= new ArrayMap<>();
211
UsageStats existingStat =
aggregatedStats
.get(newStat.getPackageName());
213
aggregatedStats
.put(newStat.mPackageName, newStat);
218
return
aggregatedStats
;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineUIUtils.js
219
* @param {!Object}
aggregatedStats
221
WebInspector.TimelineUIUtils._generateAggregatedInfo = function(
aggregatedStats
)
225
for (var index in
aggregatedStats
) {
230
text.textContent = Number.millisToString(
aggregatedStats
[index], true);
237
* @param {!Object}
aggregatedStats
242
WebInspector.TimelineUIUtils.generatePieChart = function(
aggregatedStats
, selfCategory, selfTime)
248
for (var categoryName in
aggregatedStats
)
249
total +=
aggregatedStats
[categoryName];
269
var categoryTime =
aggregatedStats
[selfCategory.name];
284
var value =
aggregatedStats
[category.name]
[
all
...]
TimelinePanel.js
[
all
...]
TimelineView.js
342
var
aggregatedStats
= {};
345
this._uiUtils.aggregateTimeForRecord(
aggregatedStats
, presentationChildren[i].record());
347
for (var category in
aggregatedStats
)
348
idle -=
aggregatedStats
[category];
349
aggregatedStats
["idle"] = idle;
350
var pieChart = WebInspector.TimelineUIUtils.generatePieChart(
aggregatedStats
);
[
all
...]
TimelineUIUtilsImpl.js
503
var
aggregatedStats
= {};
504
WebInspector.TimelineUIUtilsImpl.aggregateTimeForRecord(
aggregatedStats
, record);
506
fragment.appendChild(WebInspector.TimelineUIUtils.generatePieChart(
aggregatedStats
, WebInspector.TimelineUIUtilsImpl.recordStyle(record).category, record.selfTime()));
508
fragment.appendChild(WebInspector.TimelineUIUtils.generatePieChart(
aggregatedStats
));
Completed in 136 milliseconds