Searched refs:boxes (Results 1 – 2 of 2) sorted by relevance
/cts/apps/CameraITS/utils/ |
D | low_light_utils.py | 141 boxes = [] 157 boxes.append((x, y, w, h)) 158 return boxes 241 def _compute_luminance_regions(image, boxes): argument 251 for b in boxes: 421 boxes = _find_boxes(img) 422 if len(boxes) != _EXPECTED_NUM_OF_BOXES: 430 regions = _compute_luminance_regions(img, boxes) 440 boxes = _find_boxes(img) 441 regions = _compute_luminance_regions(img, boxes)
|
/cts/tests/tests/view/src/android/view/cts/ |
D | FocusFinderTest.java | 399 View[] boxes = new View[3]; in testDuplicateId() local 404 boxes[i] = item.findViewById(R.id.itembox); in testDuplicateId() 410 verifyNextFocus(buttons[0], View.FOCUS_FORWARD, boxes[0]); in testDuplicateId() 411 verifyNextFocus(boxes[0], View.FOCUS_FORWARD, buttons[1]); in testDuplicateId() 412 verifyNextFocus(buttons[1], View.FOCUS_FORWARD, boxes[1]); in testDuplicateId() 413 verifyNextFocus(boxes[1], View.FOCUS_FORWARD, buttons[2]); in testDuplicateId()
|