Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/RotaryController/src/com/android/car/rotary/
H A DNavigator.java692 AccessibilityNodeInfo nextTargetNode = targetNode.focusSearch(direction); in findFocusableDescendantInDirection() local
693 if (nextTargetNode == null in findFocusableDescendantInDirection()
694 || nextTargetNode.equals(containerNode) in findFocusableDescendantInDirection()
695 || !Utils.isDescendant(containerNode, nextTargetNode)) { in findFocusableDescendantInDirection()
696 Utils.recycleNode(nextTargetNode); in findFocusableDescendantInDirection()
700 if (nextTargetNode.equals(referenceNode) || nextTargetNode.equals(targetNode)) { in findFocusableDescendantInDirection()
703 Utils.recycleNode(nextTargetNode); in findFocusableDescendantInDirection()
708 targetNode = nextTargetNode; in findFocusableDescendantInDirection()