Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/camera2/params/
DHighSpeedVideoConfiguration.java56 mWidth = checkArgumentPositive(width, "width must be positive"); in HighSpeedVideoConfiguration()
57 mHeight = checkArgumentPositive(height, "height must be positive"); in HighSpeedVideoConfiguration()
58 mFpsMin = checkArgumentPositive(fpsMin, "fpsMin 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.java64 mRows = checkArgumentPositive(rows, "rows must be positive"); in LensShadingMap()
65 mColumns = checkArgumentPositive(columns, "columns must be positive"); in LensShadingMap()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DLegacyCameraDevice.java568 checkArgumentPositive(width, "width must be positive."); in configureSurface()
569 checkArgumentPositive(height, "height must be positive."); in configureSurface()
580 checkArgumentPositive(width, "width must be positive."); in produceFrame()
581 checkArgumentPositive(height, "height must be positive."); in produceFrame()
597 checkArgumentPositive(width, "width must be positive."); in setSurfaceDimens()
598 checkArgumentPositive(height, "height must be positive."); in setSurfaceDimens()
DParameterUtils.java723 checkArgumentPositive(cropSize.getWidth(), "cropSize.width must be positive"); in getZoomRatio()
724 checkArgumentPositive(cropSize.getHeight(), "cropSize.height must be positive"); in getZoomRatio()
/frameworks/base/core/java/com/android/internal/util/
DPreconditions.java124 public static int checkArgumentPositive(final int value, final String errorMessage) { in checkArgumentPositive() method in Preconditions
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java34 import static com.android.internal.util.Preconditions.checkArgumentPositive;