Home
last modified time | relevance | path

Searched refs:UiBenchmarkResult (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/results/
H A DGlobalResultsStore.java79 UiBenchmarkResult result) { in storeRunResults()
133 ArrayList<UiBenchmarkResult> resultList = new ArrayList<>(); in loadTestResults()
178 UiBenchmarkResult iterationResult; in loadTestResults()
180 iterationResult = new UiBenchmarkResult(values); in loadTestResults()
228 ArrayList<UiBenchmarkResult> resultList = results.get(name); in loadDetailedResults()
255 UiBenchmarkResult iterationResult; in loadDetailedResults()
257 iterationResult = new UiBenchmarkResult(values); in loadDetailedResults()
286 HashMap<String, ArrayList<UiBenchmarkResult>> detailedResults = in exportToCsv()
302 UiBenchmarkResult result = results.get(i); in exportToCsv()
360 ArrayList<UiBenchmarkResult> runs = detailedResults.get(test); in writeRawResults()
[all …]
H A DUiBenchmarkResult.java32 public class UiBenchmarkResult { class
59 public UiBenchmarkResult(List<FrameMetrics> instances) { in UiBenchmarkResult() method in UiBenchmarkResult
64 public UiBenchmarkResult(double[] values) { in UiBenchmarkResult() method in UiBenchmarkResult
/aosp14/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/
H A DAutomator.java31 import com.android.benchmark.results.UiBenchmarkResult;
89 private UiBenchmarkResult mResults;
191 mResults = new UiBenchmarkResult(stats); in persistResults()
/aosp14/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
H A DRunLocalBenchmarksActivity.java39 import com.android.benchmark.results.UiBenchmarkResult;
242 HashMap<String, ArrayList<UiBenchmarkResult>> detailedResults = in computeOverallScore()
244 for (ArrayList<UiBenchmarkResult> testResult : detailedResults.values()) { in computeOverallScore()
245 for (UiBenchmarkResult res : testResult) { in computeOverallScore()
H A DUiResultsFragment.java32 import com.android.benchmark.results.UiBenchmarkResult;
49 private ArrayList<UiBenchmarkResult> mResults = new ArrayList<>();