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

/frameworks/base/core/java/android/view/
H A DFocusFinder.java51 final Rect mBestCandidateRect = new Rect(); field in class:FocusFinder
211 mBestCandidateRect.set(focusedRect);
214 mBestCandidateRect.offset(focusedRect.width() + 1, 0);
217 mBestCandidateRect.offset(-(focusedRect.width() + 1), 0);
220 mBestCandidateRect.offset(0, focusedRect.height() + 1);
223 mBestCandidateRect.offset(0, -(focusedRect.height() + 1));
239 if (isBetterCandidate(direction, focusedRect, mOtherRect, mBestCandidateRect)) {
240 mBestCandidateRect.set(mOtherRect);

Completed in 201 milliseconds