Home
last modified time | relevance | path

Searched refs:change (Results 1 – 4 of 4) sorted by relevance

/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DStat.java148 public static double calcRatePerSec(double change, double timeInMSec) { in calcRatePerSec() argument
150 return change * 1000.0 / 0.001; // do not allow zero in calcRatePerSec()
152 return change * 1000.0 / timeInMSec; in calcRatePerSec()
159 public static double[] calcRatePerSecArray(double change, double[] timeInMSec) { in calcRatePerSecArray() argument
161 change *= 1000.0; in calcRatePerSecArray()
164 result[i] = change / 0.001; in calcRatePerSecArray()
166 result[i] = change / timeInMSec[i]; in calcRatePerSecArray()
/test/vti/dashboard/src/main/webapp/js/
Dsearch_header.js95 presubmit.change(function() {
99 postsubmit.change(function() {
/test/vts/proto/
DVtsFuzzTaskMessage.proto112 // tracks when most recent status change occurred
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_graph.jsp46 $('#outlier-select').change(drawAllGraphs);