OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:reportedFOV
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
CtsTestHelper.java
29
public static void storeCtsTestResult(Activity activity, float
reportedFOV
, float measuredFOV) {
31
it.putExtra(REPORTED_FOV_EXTRA,
reportedFOV
);
44
public static boolean isResultPassed(float
reportedFOV
, float measuredFOV) {
45
if (Math.abs(
reportedFOV
- measuredFOV) < 2f) return true;
PhotoCaptureActivity.java
331
float
reportedFOV
= CtsTestHelper.getReportedFOV(data);
334
if (CtsTestHelper.isResultPassed(
reportedFOV
, measuredFOV)) {
Completed in 274 milliseconds