Searched refs:statistics (Results 101 - 125 of 144) sorted by last modified time

123456

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A Dpep8.py1525 """Get statistics for message codes that start with the prefix.
1536 """Print overall statistics (number of errors and warnings)."""
1756 'show-source', 'statistics', 'verbose']
1781 parser.add_option('--statistics', action='store_true',
1930 if options.statistics:
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DHeapSnapshotView.js493 * @param {!WebInspector.HeapSnapshotCommon.Statistics} statistics
495 _gotStatistics: function(statistics)
497 this._statisticsView.setTotal(statistics.total);
498 this._statisticsView.addRecord(statistics.code, WebInspector.UIString("Code"), "#f77");
499 this._statisticsView.addRecord(statistics.strings, WebInspector.UIString("Strings"), "#5e5");
500 this._statisticsView.addRecord(statistics.jsArrays, WebInspector.UIString("JS Arrays"), "#7af");
501 this._statisticsView.addRecord(statistics.native, WebInspector.UIString("Typed Arrays"), "#fc5");
502 this._statisticsView.addRecord(statistics.total, WebInspector.UIString("Total"));
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/
H A Drunner.js86 var statistics = this.computeStatistics(values, unit);
89 if (statistics.values)
90 this.log("values " + statistics.values.join(", ") + " " + statistics.unit);
91 this.log("avg " + statistics.mean + " " + statistics.unit);
92 this.log("median " + statistics.median + " " + statistics.unit);
93 this.log("stdev " + statistics.stdev + " " + statistics
[all...]
/external/chromium_org/tools/perf/benchmarks/
H A Djetstream.py26 from telemetry.util import statistics namespace
73 all_scores.append(statistics.GeometricMean(score_list))
H A Doctane.py20 from telemetry.util import statistics namespace
122 total = statistics.GeometricMean(all_scores)
H A Dpeacekeeper.py20 from telemetry.util import statistics namespace
68 total = statistics.GeometricMean(combined_score.values)
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dippet_power_monitor.py21 from telemetry.util import statistics namespace
213 statistics.ArithmeticMean(get(
H A Dippet_power_monitor_unittest.py28 statistics = power_monitor.StopMonitoringPower()
30 self.assertEqual(statistics['identifier'], 'ippet')
H A Dmsr_power_monitor_unittest.py25 statistics = power_monitor.StopMonitoringPower()
27 self.assertEqual(statistics['identifier'], 'msr')
28 self.assertIn('energy_consumption_mwh', statistics)
29 self.assertGreater(statistics['energy_consumption_mwh'], 0)
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dmonsoon_profiler.py18 from telemetry.util import statistics namespace
56 print (' Total = %f' % statistics.TrapezoidalRule(power_samples, 1/5000.))
57 print (' Average = %f' % statistics.ArithmeticMean(power_samples) +
58 '+-%f' % statistics.StandardDeviation(power_samples))
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dstatistics_unittest.py9 from telemetry.util import statistics namespace
44 normalized_samples, scale = statistics.NormalizeSamples(samples)
49 normalized_samples, scale = statistics.NormalizeSamples(samples)
54 normalized_samples, scale = statistics.NormalizeSamples(samples)
59 normalized_samples, scale = statistics.NormalizeSamples(samples)
74 samples = statistics.NormalizeSamples(samples)[0]
75 d = statistics.Discrepancy(samples)
77 d_relaxed = statistics.Discrepancy(relaxed_samples)
81 """Computes discrepancy for sample sets with known statistics."""
83 d = statistics
[all...]
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
H A Drendering_stats_unittest.py12 from telemetry.util.statistics import DivideIfPossibleOrZero
222 # Also add some dummy frame statistics so we can feed the resulting timeline
H A Dsmoothness.py6 from telemetry.util import statistics namespace
85 mean_latency = round(statistics.ArithmeticMean(latency_list), 3)
87 round(statistics.DurationsDiscrepancy(latency_list), 4))
158 mean_frame_time = round(statistics.ArithmeticMean(frame_times), 3)
160 percentile_95 = statistics.Percentile(frame_times, 95.0)
187 frame_discrepancy = round(statistics.TimestampsDiscrepancy(
211 mean_pixels_approximated = round(statistics.ArithmeticMean(
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c1411 static int statistics = 0; local
1427 {OPT_FLAG, "s", (char*)&statistics,
1528 if( statistics ){
1529 printf("Parser statistics: %d terminals, %d nonterminals, %d rules\n",
/external/chromium_org/remoting/client/
H A Dclient_status_logger.cc93 void ClientStatusLogger::LogStatistics(ChromotingStats* statistics) { argument
98 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForStatistics(statistics));
H A Dclient_status_logger.h30 void LogStatistics(remoting::ChromotingStats* statistics);
H A Dserver_log_entry_client.cc25 const char kValueEventNameStatistics[] = "connection-statistics";
111 ChromotingStats* statistics) {
117 StringPrintf("%.2f", statistics->video_bandwidth()->Rate()));
119 StringPrintf("%.2f", statistics->video_capture_ms()->Average()));
121 StringPrintf("%.2f", statistics->video_encode_ms()->Average()));
123 StringPrintf("%.2f", statistics->video_decode_ms()->Average()));
125 StringPrintf("%.2f", statistics->video_frame_rate()->Rate()));
127 StringPrintf("%.2f", statistics->round_trip_ms()->Average()));
110 MakeLogEntryForStatistics( ChromotingStats* statistics) argument
H A Dserver_log_entry_client.h22 // Constructs a log entry for reporting statistics.
24 ChromotingStats* statistics);
H A Dserver_log_entry_client_unittest.cc52 ChromotingStats statistics; local
53 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForStatistics(&statistics));
58 key_value_pairs["event-name"] = "connection-statistics";
/external/chromium_org/remoting/webapp/
H A Dconnection_stats.css6 #statistics {
H A Dconnection_stats.js31 * Update the statistics panel.
32 * @param {remoting.ClientSession.PerfStats} stats The connection statistics.
65 var statistics = document.getElementById('statistics');
/external/chromium_org/storage/browser/quota/
H A Dquota_manager.cc1121 std::map<std::string, std::string>* statistics) {
1122 DCHECK(statistics);
1129 (*statistics)[p->first] = base::Int64ToString(p->second);
1120 GetStatistics( std::map<std::string, std::string>* statistics) argument
H A Dquota_manager.h223 void GetStatistics(std::map<std::string, std::string>* statistics);
H A Dquota_temporary_storage_evictor.cc63 std::map<std::string, int64>* statistics) {
64 DCHECK(statistics);
66 (*statistics)["errors-on-evicting-origin"] =
68 (*statistics)["errors-on-getting-usage-and-quota"] =
70 (*statistics)["evicted-origins"] =
72 (*statistics)["eviction-rounds"] =
74 (*statistics)["skipped-eviction-rounds"] =
62 GetStatistics( std::map<std::string, int64>* statistics) argument
H A Dquota_temporary_storage_evictor.h74 void GetStatistics(std::map<std::string, int64>* statistics);

Completed in 5796 milliseconds

123456