Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DRVCVXCheckTestActivity.java69 RVCVXCheckAnalyzer.AnalyzeReport mReport = null; field in RVCVXCheckTestActivity
174 mReport = analyzer.processDataSet(); in activitySetUp()
180 if (mReport == null) { in activitySetUp()
183 if (mReport.error) { in activitySetUp()
184 getReportLog().setSummary("Analysis failed: "+mReport.reason, 0, in activitySetUp()
187 showUserMessage("Analysis failed: " + mReport.reason); in activitySetUp()
192 getReportLog().addValue("Roll error RMS", mReport.roll_rms_error, in activitySetUp()
194 getReportLog().addValue("Pitch error RMS", mReport.pitch_rms_error, in activitySetUp()
196 getReportLog().addValue("Yaw error RMS", mReport.yaw_rms_error, in activitySetUp()
199 getReportLog().addValue("Roll error MAX", mReport.roll_max_error, in activitySetUp()
[all …]
/cts/common/util/src/com/android/compatibility/common/util/
DTestResult.java28 private ReportLog mReport; field in TestResult
111 return mReport; in getReportLog()
119 mReport = report; in setReportLog()
225 mReport = null; in reset()
/cts/hostsidetests/ui/src/android/ui/cts/
DTaskSwitchingTest.java51 private ReportLog mReport = null; field in TaskSwitchingTest
105 assertNotNull("no performance data", mReport); in testTaskSwitching()
107 String.format("%s#%s", getClass().getName(), "testTaskSwitching"), mReport); in testTaskSwitching()
117 mReport = ReportLog.parse(testMetrics.get(RESULT_KEY)); in testEnded()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTest.java48 private ReportLog mReport; field in Test
126 return mReport; in getReportLog()
130 mReport = report; in setReportLog()
168 metricsXmlSerializer.serialize(mReport); in serialize()