Searched refs:topFocus (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DScrollView.java928 * @param topFocus look for a candidate is the one at the top of the bounds
929 * if topFocus is true, or at the bottom of the bounds if topFocus is
938 private View findFocusableViewInBounds(boolean topFocus, int top, int bottom) { argument
973 (topFocus && viewTop < focusCandidate.getTop()) ||
974 (!topFocus && viewBottom > focusCandidate
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java1095 * @param topFocus look for a candidate is the one at the top of the bounds
1096 * if topFocus is true, or at the bottom of the bounds if topFocus is
1105 private View findFocusableViewInBounds(boolean topFocus, int top, int bottom) { argument
1139 (topFocus && viewTop < focusCandidate.getTop())
1140 || (!topFocus && viewBottom > focusCandidate.getBottom());

Completed in 53 milliseconds