Searched refs:testInvalidAreas (Results 1 – 1 of 1) sorted by relevance
/cts/tests/camera/src/android/hardware/cts/ |
D | CameraTest.java | 2716 testInvalidAreas(type, makeAreas(-1001, -1000, 1000, 1000, 1)); // left should >= -1000 in testAreas() 2717 testInvalidAreas(type, makeAreas(-1000, -1001, 1000, 1000, 1)); // top should >= -1000 in testAreas() 2718 testInvalidAreas(type, makeAreas(-1000, -1000, 1001, 1000, 1)); // right should <= 1000 in testAreas() 2719 testInvalidAreas(type, makeAreas(-1000, -1000, 1000, 1001, 1)); // bottom should <= 1000 in testAreas() 2720 testInvalidAreas(type, makeAreas(-1000, -1000, 1000, 1000, 0)); // weight should >= 1 in testAreas() 2721 testInvalidAreas(type, makeAreas(-1000, -1000, 1000, 1001, 1001)); // weight should <= 1000 in testAreas() 2722 testInvalidAreas(type, makeAreas(500, -1000, 500, 1000, 1)); // left should < right in testAreas() 2723 testInvalidAreas(type, makeAreas(-1000, 500, 1000, 500, 1)); // top should < bottom in testAreas() 2724 testInvalidAreas(type, makeAreas(500, -1000, 499, 1000, 1)); // left should < right in testAreas() 2725 testInvalidAreas(type, makeAreas(-1000, 500, 100, 499, 1)); // top should < bottom in testAreas() [all …]
|