Home
last modified time | relevance | path

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

/cts/tests/camera/src/android/hardware/cts/
DCameraTest.java2685 testInvalidAreas(type, makeAreas(-1001, -1000, 1000, 1000, 1)); // left should >= -1000 in testAreas()
2686 testInvalidAreas(type, makeAreas(-1000, -1001, 1000, 1000, 1)); // top should >= -1000 in testAreas()
2687 testInvalidAreas(type, makeAreas(-1000, -1000, 1001, 1000, 1)); // right should <= 1000 in testAreas()
2688 testInvalidAreas(type, makeAreas(-1000, -1000, 1000, 1001, 1)); // bottom should <= 1000 in testAreas()
2689 testInvalidAreas(type, makeAreas(-1000, -1000, 1000, 1000, 0)); // weight should >= 1 in testAreas()
2690 testInvalidAreas(type, makeAreas(-1000, -1000, 1000, 1001, 1001)); // weight should <= 1000 in testAreas()
2691 testInvalidAreas(type, makeAreas(500, -1000, 500, 1000, 1)); // left should < right in testAreas()
2692 testInvalidAreas(type, makeAreas(-1000, 500, 1000, 500, 1)); // top should < bottom in testAreas()
2693 testInvalidAreas(type, makeAreas(500, -1000, 499, 1000, 1)); // left should < right in testAreas()
2694 testInvalidAreas(type, makeAreas(-1000, 500, 100, 499, 1)); // top should < bottom in testAreas()
[all …]