Searched refs:checkArgumentPositive (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/hardware/camera2/params/ |
D | HighSpeedVideoConfiguration.java | 56 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()
|
D | StreamConfiguration.java | 63 mWidth = checkArgumentPositive(width, "width must be positive"); in StreamConfiguration() 64 mHeight = checkArgumentPositive(height, "height must be positive"); in StreamConfiguration()
|
D | StreamConfigurationDuration.java | 58 mWidth = checkArgumentPositive(width, "width must be positive"); in StreamConfigurationDuration() 59 mHeight = checkArgumentPositive(height, "height must be positive"); in StreamConfigurationDuration()
|
D | LensShadingMap.java | 64 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/ |
D | LegacyCameraDevice.java | 568 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()
|
D | ParameterUtils.java | 723 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/ |
D | Preconditions.java | 124 public static int checkArgumentPositive(final int value, final String errorMessage) { in checkArgumentPositive() method in Preconditions
|
/frameworks/base/media/java/android/media/ |
D | MediaCodecInfo.java | 34 import static com.android.internal.util.Preconditions.checkArgumentPositive;
|