Searched refs:currentCluster (Results 1 - 5 of 5) sorted by path

/frameworks/base/core/java/android/view/
H A DFocusFinder.java153 * @param currentCluster The starting point of the search. Null means the default cluster
159 @Nullable View currentCluster,
162 if (currentCluster != null) {
163 next = findNextUserSpecifiedKeyboardNavigationCluster(root, currentCluster, direction);
175 root, currentCluster, clusters, direction);
183 private View findNextUserSpecifiedKeyboardNavigationCluster(View root, View currentCluster, argument
186 currentCluster.findUserSetNextKeyboardNavigationCluster(root, direction);
277 View currentCluster,
293 return getNextKeyboardNavigationCluster(root, currentCluster, clusters, count);
297 return getPreviousKeyboardNavigationCluster(root, currentCluster, cluster
157 findNextKeyboardNavigationCluster( @onNull View root, @Nullable View currentCluster, @View.FocusDirection int direction) argument
275 findNextKeyboardNavigationCluster( View root, View currentCluster, List<View> clusters, @View.FocusDirection int direction) argument
401 getNextKeyboardNavigationCluster( View root, View currentCluster, List<View> clusters, int count) argument
424 getPreviousKeyboardNavigationCluster( View root, View currentCluster, List<View> clusters, int count) argument
[all...]
H A DView.java11016 * @param currentCluster The starting point of the search. Null means the current cluster is not
11023 public View keyboardNavigationClusterSearch(View currentCluster, argument
11026 currentCluster = this;
11033 this, currentCluster, direction);
11035 return mParent.keyboardNavigationClusterSearch(currentCluster, direction);
[all...]
H A DViewParent.java181 * @param currentCluster The starting point of the search. Null means the current cluster is not
188 View keyboardNavigationClusterSearch(View currentCluster, int direction); argument
H A DViewRootImpl.java6637 public View keyboardNavigationClusterSearch(View currentCluster, argument
6641 mView, currentCluster, direction);
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DViewCompat.java3295 * @param currentCluster The starting point of the search. {@code null} means the current
3302 public static View keyboardNavigationClusterSearch(@NonNull View view, View currentCluster, argument
3305 return view.keyboardNavigationClusterSearch(currentCluster, direction);

Completed in 183 milliseconds