/external/chromium_org/tools/perf/metrics/ |
D | speedindex.js | 16 window.performance.clearResourceTimings = 17 (window.performance.clearResourceTimings || 18 window.performance.mozClearResourceTimings || 19 window.performance.msClearResourceTimings || 20 window.performance.oClearResourceTimings || 21 window.performance.webkitClearResourceTimings); 23 window.performance.getEntriesByType = 24 (window.performance.getEntriesByType || 25 window.performance.mozGetEntriesByType || 26 window.performance.msGetEntriesByType || [all …]
|
D | smoothness.js | 13 if (window.performance) 14 return (performance.now || 15 performance.mozNow || 16 performance.msNow || 17 performance.oNow || 18 performance.webkitNow).bind(window.performance);
|
D | media.js | 187 if (window.performance) 188 return (performance.now || 189 performance.mozNow || 190 performance.msNow || 191 performance.oNow || 192 performance.webkitNow).call(window.performance);
|
/external/chromium_org/v8/test/mjsunit/ |
D | d8-performance-now.js | 38 if (this.performance && performance.now) { 40 var start_test = performance.now(); 42 for (var start = performance.now(); 44 start = performance.now()) { 45 var end = performance.now(); 49 var next = performance.now();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/META-INF/ |
D | MANIFEST.MF | 4 Bundle-SymbolicName: org.eclipse.test.performance.ui; singleton:=true 7 Bundle-Activator: org.eclipse.test.performance.ui.UiPlugin 15 org.eclipse.test.performance.derby;bundle-version="10.4.2";resolution:=optional, 18 org.eclipse.test.performance;bundle-version="3.6.0", 23 Export-Package: org.eclipse.test.internal.performance.results.db, 24 org.eclipse.test.internal.performance.results.model, 25 org.eclipse.test.internal.performance.results.ui, 26 org.eclipse.test.internal.performance.results.utils, 27 org.eclipse.test.performance.ui
|
/external/chromium_org/chrome/renderer/ |
D | page_load_histograms.cc | 198 void DumpPerformanceTiming(const WebPerformance& performance, in DumpPerformanceTiming() argument 205 Time navigation_start = Time::FromDoubleT(performance.navigationStart()); in DumpPerformanceTiming() 206 Time redirect_start = Time::FromDoubleT(performance.redirectStart()); in DumpPerformanceTiming() 207 Time redirect_end = Time::FromDoubleT(performance.redirectEnd()); in DumpPerformanceTiming() 208 Time fetch_start = Time::FromDoubleT(performance.fetchStart()); in DumpPerformanceTiming() 209 Time domain_lookup_start = Time::FromDoubleT(performance.domainLookupStart()); in DumpPerformanceTiming() 210 Time domain_lookup_end = Time::FromDoubleT(performance.domainLookupEnd()); in DumpPerformanceTiming() 211 Time connect_start = Time::FromDoubleT(performance.connectStart()); in DumpPerformanceTiming() 212 Time connect_end = Time::FromDoubleT(performance.connectEnd()); in DumpPerformanceTiming() 213 Time request_start = Time::FromDoubleT(performance.requestStart()); in DumpPerformanceTiming() [all …]
|
/external/chromium_org/third_party/WebKit/Tools/ |
D | run-perf-test.cfg | 7 This script is intended for use by anyone that wants to run a remote performance 8 test. Modify the config below and add the command to run the performance test, 18 performance test. You can retrieve the metric by looking at the stdio of 19 the performance test. Look for lines of the format: 24 'repeat_count': The number of times to repeat the performance test. 25 'max_time_minutes': The script will attempt to run the performance test 27 'truncate_percent': Discard the highest/lowest % values from performance test.
|
/external/chromium_org/tools/ |
D | run-perf-test.cfg | 7 This script is intended for use by anyone that wants to run a remote performance 8 test. Modify the config below and add the command to run the performance test, 18 performance test. You can retrieve the metric by looking at the stdio of 19 the performance test. Look for lines of the format: 24 'repeat_count': The number of times to repeat the performance test. 25 'max_time_minutes': The script will attempt to run the performance test 27 'truncate_percent': Discard the highest/lowest % values from performance test.
|
D | run-bisect-perf-regression.cfg | 8 on a range of revisions to look for a performance regression. Modify the config 9 below and add the revision range, performance command, and metric. You can then 21 performance test. You can retrieve the metric by looking at the stdio of 22 the performance test. Look for lines of the format: 27 'repeat_count': The number of times to repeat the performance test. 28 'max_time_minutes': The script will attempt to run the performance test 30 'truncate_percent': Discard the highest/lowest % values from performance test.
|
/external/chromium_org/chrome/browser/resources/ |
D | translate.js | 78 var injectedTime = performance.now(); 107 readyTime = performance.now(); 131 endTime = performance.now(); 232 startTime = performance.now(); 256 loadedTime = performance.now();
|
/external/icu4c/test/perf/DateFmtPerf/ |
D | ReadMe.txt | 8 …performance test is to test the "real world" applications of ICU, such as Date Formatting and the … 10 There is no Perl script associated with this performance test, due to the fact that the performance… 12 There are 7 tests contained in this performance test:
|
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/ |
D | ReadMe.txt | 8 …performance test is to test the "real world" applications of ICU, such as Date Formatting and the … 10 There is no Perl script associated with this performance test, due to the fact that the performance… 12 There are 7 tests contained in this performance test:
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
D | PerformanceResultsPreferenceInitializer.java | 11 package org.eclipse.test.internal.performance.results.ui; 17 import org.eclipse.test.internal.performance.PerformanceTestPlugin; 18 import org.eclipse.test.internal.performance.data.Dim; 19 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 20 import org.eclipse.test.performance.Dimension;
|
D | ComponentResultsView.java | 11 package org.eclipse.test.internal.performance.results.ui; 36 import org.eclipse.test.internal.performance.results.model.BuildResultsElement; 37 import org.eclipse.test.internal.performance.results.model.ComponentResultsElement; 38 import org.eclipse.test.internal.performance.results.model.ConfigResultsElement; 39 import org.eclipse.test.internal.performance.results.model.DimResultsElement; 40 import org.eclipse.test.internal.performance.results.model.PerformanceResultsElement; 41 import org.eclipse.test.internal.performance.results.model.ResultsElement; 42 import org.eclipse.test.internal.performance.results.model.ScenarioResultsElement; 43 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 44 import org.eclipse.test.internal.performance.results.utils.Util;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
D | ComponentResultsElement.java | 11 package org.eclipse.test.internal.performance.results.model; 21 import org.eclipse.test.internal.performance.results.db.AbstractResults; 22 import org.eclipse.test.internal.performance.results.db.ComponentResults; 23 import org.eclipse.test.internal.performance.results.db.PerformanceResults; 24 import org.eclipse.test.internal.performance.results.db.ScenarioResults; 25 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 26 import org.eclipse.test.internal.performance.results.utils.Util;
|
D | ScenarioResultsElement.java | 11 package org.eclipse.test.internal.performance.results.model; 17 import org.eclipse.test.internal.performance.results.db.*; 18 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 19 import org.eclipse.test.internal.performance.results.utils.Util;
|
/external/chromium_org/third_party/icu/source/test/perf/ |
D | README | 7 The performance tests in ICU4C compares various aspects of ICU against previous versions of ICU, 9 performance tests are driven by a perl-based script which calls the underlying C program and 33 4) Build the ICU performance tests either through Visual Studios or with the Makefile. 34 (The location of the performance test is: icu/source/test/perf) 39 b) Path to the performance test data 55 Note: After building the performance tests, it is a good idea to execute each C program to ensure t… 57 Note: To run the actual performance test, you will need to setup Perl with the following modules: 60 …s take a while depending on the machine it is running on so a script to run each performance test's
|
/external/icu4c/test/perf/ |
D | README | 7 The performance tests in ICU4C compares various aspects of ICU against previous versions of ICU, 9 performance tests are driven by a perl-based script which calls the underlying C program and 33 4) Build the ICU performance tests either through Visual Studios or with the Makefile. 34 (The location of the performance test is: icu/source/test/perf) 39 b) Path to the performance test data 55 Note: After building the performance tests, it is a good idea to execute each C program to ensure t… 57 Note: To run the actual performance test, you will need to setup Perl with the following modules: 60 …s take a while depending on the machine it is running on so a script to run each performance test's
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
D | RawDataTable.java | 11 package org.eclipse.test.performance.ui; 18 import org.eclipse.test.internal.performance.data.Dim; 19 import org.eclipse.test.internal.performance.results.db.BuildResults; 20 import org.eclipse.test.internal.performance.results.db.ConfigResults; 21 import org.eclipse.test.internal.performance.results.db.DB_Results; 22 import org.eclipse.test.internal.performance.results.utils.Util;
|
D | Main.java | 11 package org.eclipse.test.performance.ui; 15 import org.eclipse.test.internal.performance.results.db.DB_Results;
|
/external/linux-tools-perf/Documentation/ |
D | perf-kvm.txt | 22 a performance counter profile of guest os in realtime 25 'perf kvm record <command>' to record the performance counter profile 31 'perf kvm report' to display the performance counter profile information 34 'perf kvm diff' to displays the performance difference amongst two perf.data 50 Collect host side performance profile. 52 Collect guest side performance profile.
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebPerformance.cpp | 171 WebPerformance::WebPerformance(const PassRefPtr<Performance>& performance) in WebPerformance() argument 172 : m_private(performance) in WebPerformance() 176 WebPerformance& WebPerformance::operator=(const PassRefPtr<Performance>& performance) in operator =() argument 178 m_private = performance; in operator =()
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-04-16-DynamicCompilation.txt | 8 to the performance problem faced by modern architectures and programming 17 tradeoff between performance and portability. On a deeper level, however, 18 there are two reasons that optimal system performance may be obtained by a 23 optimal performance in all cases, because applications have varying dynamic 31 the performance problem. Instruction set architectures (ISAs) continuously 49 increase in effective system performance for real world environments.
|
/external/valgrind/main/docs/internals/ |
D | performance.txt | 2 Notes on performance 4 The intent of this file is to record progress in improving performance. 21 Improved Nulgrind performance typically by 10--20%, and Memcheck 22 performance typically by 2--20%.
|
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
D | VideoPlaybackQuality.cpp | 53 if (document.domWindow() && document.domWindow()->performance()) in VideoPlaybackQuality() 54 m_creationTime = document.domWindow()->performance()->now(); in VideoPlaybackQuality()
|