Searched defs:currentCluster (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
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 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 DViewRootImpl.java6212 public View keyboardNavigationClusterSearch(View currentCluster, argument
6216 mView, currentCluster, direction);
H A DView.java10344 * @param currentCluster The starting point of the search. Null means the current cluster is not
10351 public View keyboardNavigationClusterSearch(View currentCluster, argument
10354 currentCluster = this;
10361 this, currentCluster, direction);
10363 return mParent.keyboardNavigationClusterSearch(currentCluster, direction);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java993 public View keyboardNavigationClusterSearch(@NonNull View view, View currentCluster, argument
1612 public View keyboardNavigationClusterSearch(@NonNull View view, View currentCluster, argument
1614 return view.keyboardNavigationClusterSearch(currentCluster, direction);
3878 * @param currentCluster The starting point of the search. {@code null} means the current
3885 public static View keyboardNavigationClusterSearch(@NonNull View view, View currentCluster, argument
3887 return IMPL.keyboardNavigationClusterSearch(view, currentCluster, direction);

Completed in 127 milliseconds