HomeSort by relevance Sort by last modified time
    Searched defs:apertures (Results 1 - 6 of 6) sorted by null

  /cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
StaticMetadata.java 637 * Get available apertures and do the sanity check.
639 * @return The non-null array of available apertures
643 float[] apertures = getValueFromKeyNonNull(key); local
645 checkTrueForKey(key, "Array should contain at least one element", apertures.length >= 1);
647 for (int i = 0; i < apertures.length; i++) {
649 String.format("apertures[%d] %f should be positive.", i, apertures[i]),
650 apertures[i] > 0);
652 checkElementDistinct(key, Arrays.asList(CameraTestUtils.toObject(apertures)));
654 return apertures;
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
StaticMetadata.java 597 * Get available apertures and do the sanity check.
599 * @return The non-null array of available apertures
603 float[] apertures = getValueFromKeyNonNull(key); local
605 checkTrueForKey(key, "Array should contain at least one element", apertures.length >= 1);
607 for (int i = 0; i < apertures.length; i++) {
609 String.format("apertures[%d] %f should be positive.", i, apertures[i]),
610 apertures[i] > 0);
612 checkElementDistinct(key, Arrays.asList(CameraTestUtils.toObject(apertures)));
614 return apertures;
    [all...]
CameraTestUtils.java 1887 float[] apertures = staticInfo.getAvailableAperturesChecked(); local
2045 float[] apertures = staticInfo.getAvailableAperturesChecked(); local
    [all...]
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/
CameraTestUtils.java 2131 float[] apertures = staticInfo.getAvailableAperturesChecked(); local
2294 float[] apertures = staticInfo.getAvailableAperturesChecked(); local
    [all...]
  /device/google/marlin/camera/QCamera2/stack/common/
cam_intf.h 327 float apertures[CAM_APERTURES_MAX]; member in struct:__anon2127
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/common/
cam_intf.h 415 float apertures[CAM_APERTURES_MAX]; member in struct:cam_capability
    [all...]

Completed in 302 milliseconds