Searched refs:currentCluster (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | FocusFinder.java | 159 @Nullable View currentCluster, in findNextKeyboardNavigationCluster() argument 162 if (currentCluster != null) { in findNextKeyboardNavigationCluster() 163 next = findNextUserSpecifiedKeyboardNavigationCluster(root, currentCluster, direction); in findNextKeyboardNavigationCluster() 175 root, currentCluster, clusters, direction); in findNextKeyboardNavigationCluster() 183 private View findNextUserSpecifiedKeyboardNavigationCluster(View root, View currentCluster, in findNextUserSpecifiedKeyboardNavigationCluster() argument 186 currentCluster.findUserSetNextKeyboardNavigationCluster(root, direction); in findNextUserSpecifiedKeyboardNavigationCluster() 267 View currentCluster, in findNextKeyboardNavigationCluster() argument 283 return getNextKeyboardNavigationCluster(root, currentCluster, clusters, count); in findNextKeyboardNavigationCluster() 287 return getPreviousKeyboardNavigationCluster(root, currentCluster, clusters, count); in findNextKeyboardNavigationCluster() 393 View currentCluster, in getNextKeyboardNavigationCluster() argument [all …]
|
D | ViewParent.java | 188 View keyboardNavigationClusterSearch(View currentCluster, int direction); in keyboardNavigationClusterSearch() argument
|
D | View.java | 10306 public View keyboardNavigationClusterSearch(View currentCluster, in keyboardNavigationClusterSearch() argument 10309 currentCluster = this; in keyboardNavigationClusterSearch() 10316 this, currentCluster, direction); in keyboardNavigationClusterSearch() 10318 return mParent.keyboardNavigationClusterSearch(currentCluster, direction); in keyboardNavigationClusterSearch()
|
D | ViewRootImpl.java | 6193 public View keyboardNavigationClusterSearch(View currentCluster, in keyboardNavigationClusterSearch() argument 6197 mView, currentCluster, direction); in keyboardNavigationClusterSearch()
|
/frameworks/support/compat/java/android/support/v4/view/ |
D | ViewCompat.java | 979 public View keyboardNavigationClusterSearch(@NonNull View view, View currentCluster, in keyboardNavigationClusterSearch() argument 1560 public View keyboardNavigationClusterSearch(@NonNull View view, View currentCluster, in keyboardNavigationClusterSearch() argument 1562 return view.keyboardNavigationClusterSearch(currentCluster, direction); in keyboardNavigationClusterSearch() 3666 public static View keyboardNavigationClusterSearch(@NonNull View view, View currentCluster, in keyboardNavigationClusterSearch() argument 3668 return IMPL.keyboardNavigationClusterSearch(view, currentCluster, direction); in keyboardNavigationClusterSearch()
|