Home
last modified time | relevance | path

Searched refs:checkArgumentPositive (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
DHighSpeedVideoConfiguration.java59 mWidth = checkArgumentPositive(width, "width must be positive"); in HighSpeedVideoConfiguration()
60 mHeight = checkArgumentPositive(height, "height must be positive"); in HighSpeedVideoConfiguration()
61 mFpsMin = checkArgumentPositive(fpsMin, "fpsMin must be positive"); in HighSpeedVideoConfiguration()
63 mBatchSizeMax = checkArgumentPositive(batchSizeMax, "batchSizeMax must be positive"); in HighSpeedVideoConfiguration()
DStreamConfiguration.java63 mWidth = checkArgumentPositive(width, "width must be positive"); in StreamConfiguration()
64 mHeight = checkArgumentPositive(height, "height must be positive"); in StreamConfiguration()
DStreamConfigurationDuration.java58 mWidth = checkArgumentPositive(width, "width must be positive"); in StreamConfigurationDuration()
59 mHeight = checkArgumentPositive(height, "height must be positive"); in StreamConfigurationDuration()
DLensShadingMap.java63 mRows = checkArgumentPositive(rows, "rows must be positive"); in LensShadingMap()
64 mColumns = checkArgumentPositive(columns, "columns must be positive"); in LensShadingMap()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DLegacyCameraDevice.java621 checkArgumentPositive(width, "width must be positive."); in configureSurface()
622 checkArgumentPositive(height, "height must be positive."); in configureSurface()
633 checkArgumentPositive(width, "width must be positive."); in produceFrame()
634 checkArgumentPositive(height, "height must be positive."); in produceFrame()
650 checkArgumentPositive(width, "width must be positive."); in setSurfaceDimens()
651 checkArgumentPositive(height, "height must be positive."); in setSurfaceDimens()
DParameterUtils.java726 checkArgumentPositive(cropSize.getWidth(), "cropSize.width must be positive"); in getZoomRatio()
727 checkArgumentPositive(cropSize.getHeight(), "cropSize.height must be positive"); in getZoomRatio()
/frameworks/base/core/java/com/android/internal/util/
DPreconditions.java130 public static int checkArgumentPositive(final int value, final String errorMessage) { in checkArgumentPositive() method in Preconditions