Home
last modified time | relevance | path

Searched refs:score (Results 1 – 10 of 10) sorted by relevance

/cts/suite/cts/utils/
Dgrapher.py54 score = r.get('result', 'no results')
57 if score == 'pass':
61 score = r['summary']['Average Frames Per Second']
62 score = score[0:score.index('.') + 3]
63 if score != 'no results':
67 lbl = name + ' (%s)'%score
/cts/tests/openglperf2/src/android/opengl2/cts/primitive/
DGLPrimitiveBenchmark.java136 double score = 0; in runBenchmark() local
138 score += d; in runBenchmark()
140 score /= numIterations;// Average. in runBenchmark()
145 report.setSummary("average_fps", score, ResultType.HIGHER_BETTER, ResultUnit.SCORE); in runBenchmark()
/cts/apps/CameraITS/tests/scene2c/
Dtest_num_faces.py87 for score in face_scores:
88 assert score >= 1 and score <= 100
/cts/apps/CameraITS/tests/scene2/
Dtest_num_faces.py88 for score in face_scores:
89 assert score >= 1 and score <= 100
Dtest_faces.py85 for score in face_scores:
86 assert score >= 1 and score <= 100
/cts/apps/CameraITS/tests/scene2b/
Dtest_num_faces.py87 for score in face_scores:
88 assert score >= 1 and score <= 100
/cts/common/device-side/util/src/com/android/compatibility/common/util/
DMediaUtils.java102 int score = 0; in getTestName() local
107 ++score; in getTestName()
114 ++score; in getTestName()
118 if (score == 1) { in getTestName()
137 ++score; in getTestName()
141 ++score; in getTestName()
144 ++score; in getTestName()
149 if (score > bestScore) { in getTestName()
150 bestScore = score; in getTestName()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DMediaUtils.java103 int score = 0; in getTestName() local
108 ++score; in getTestName()
115 ++score; in getTestName()
119 if (score == 1) { in getTestName()
138 ++score; in getTestName()
142 ++score; in getTestName()
145 ++score; in getTestName()
150 if (score > bestScore) { in getTestName()
151 bestScore = score; in getTestName()
/cts/tests/autofillservice/src/android/autofillservice/cts/
DHelper.java1201 @NonNull AutofillId fieldId, @NonNull String categoryId, float score) { in assertFillEventForFieldsClassification() argument
1204 new FieldClassificationResult(fieldId, categoryId, score) in assertFillEventForFieldsClassification()
1470 FieldClassificationResult(@NonNull AutofillId id, @NonNull String categoryId, float score) { in FieldClassificationResult() argument
1471 this(id, new String[] { categoryId }, new float[] { score }); in FieldClassificationResult()
/cts/tests/camera/src/android/hardware/cts/
DCameraTest.java3272 assertTrue(face.score >= 1 && face.score <= 100); in testFaces()