Home
last modified time | relevance | path

Searched refs:score (Results 1 – 12 of 12) 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/scene2_c/
Dtest_num_faces.py123 for score in face_scores:
124 assert 1 <= score <= 100
/cts/apps/CameraITS/tests/scene2_d/
Dtest_num_faces.py123 for score in face_scores:
124 assert 1 <= score <= 100
/cts/apps/CameraITS/tests/scene2_e/
Dtest_num_faces.py123 for score in face_scores:
124 assert 1 <= score <= 100
/cts/apps/CameraITS/tests/scene2_b/
Dtest_num_faces.py123 for score in face_scores:
124 assert 1 <= score <= 100
/cts/apps/CameraITS/tests/scene2_a/
Dtest_num_faces.py123 for score in face_scores:
124 assert 1 <= score <= 100
Dtest_faces.py152 for score in face_scores:
153 if not 1 <= score <= 100:
/cts/tests/tests/voiceinteraction/src/android/voiceinteraction/cts/
DHotwordDetectedResultTest.java203 int score, in buildHotwordDetectedResult() argument
214 .setScore(score) in buildHotwordDetectedResult()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DMediaUtils.java105 int score = 0; in getTestName() local
110 ++score; in getTestName()
117 ++score; in getTestName()
121 if (score == 1) { in getTestName()
140 ++score; in getTestName()
144 ++score; in getTestName()
147 ++score; in getTestName()
152 if (score > bestScore) { in getTestName()
153 bestScore = score; in getTestName()
/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/
DHelper.java1283 @NonNull AutofillId fieldId, @NonNull String categoryId, float score) { in assertFillEventForFieldsClassification() argument
1286 new FieldClassificationResult(fieldId, categoryId, score) in assertFillEventForFieldsClassification()
1638 float score) { in FieldClassificationResult() argument
1639 this(id, new String[]{categoryId}, new float[]{score}); in FieldClassificationResult()
/cts/tests/camera/src/android/hardware/cts/
DCameraTest.java3291 assertTrue(face.score >= 1 && face.score <= 100); in testFaces()