Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java779 View nextView = root.focusSearch(direction); in focusSearchUiThread() local
780 if (nextView != null) { in focusSearchUiThread()
781 next = nextView.createAccessibilityNodeInfo(); in focusSearchUiThread()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayout.java2829 View nextView = row.getChildAfterViewWhenDismissed(); in focusNextViewIfFocused() local
2830 if (nextView == null) { in focusNextViewIfFocused()
2832 nextView = getFirstChildBelowTranlsationY(groupParentWhenDismissed != null in focusNextViewIfFocused()
2836 if (nextView != null) { in focusNextViewIfFocused()
2837 nextView.requestAccessibilityFocus(); in focusNextViewIfFocused()
/aosp14/frameworks/base/core/java/android/widget/
H A DAbsListView.java8051 final View nextView = getChildAt(nextViewIndex); in run()
8052 final int nextViewHeight = nextView.getHeight(); in run()
8053 final int nextViewTop = nextView.getTop(); in run()
H A DTextView.java9722 final View nextView = focusSearch(direction); in hasEditorInFocusSearchDirection() local
9723 return nextView != null && nextView.onCheckIsTextEditor(); in hasEditorInFocusSearchDirection()