Home | History | Annotate | Download | only in wm

Lines Matching refs:newFocus

3870                 AppWindowToken newFocus = findAppWindowToken(token);
3871 if (newFocus == null) {
3875 changed = mFocusedApp != newFocus;
3876 mFocusedApp = newFocus;
3879 mInputMonitor.setFocusedAppLw(newFocus);
6903 WindowState newFocus;
6907 newFocus = mCurrentFocus;
6908 if (lastFocus == newFocus) {
6912 mLastFocus = newFocus;
6914 // + " to " + newFocus);
6915 if (newFocus != null && lastFocus != null
6916 && !newFocus.isDisplayedLw()) {
6923 if (lastFocus != newFocus) {
6925 // + " to " + newFocus);
6926 if (newFocus != null) {
6928 //Slog.i(TAG, "Gaining focus: " + newFocus);
6929 newFocus.mClient.windowFocusChanged(true, mInTouchMode);
9175 WindowState newFocus = computeFocusedWindowLocked();
9176 if (mCurrentFocus != newFocus) {
9183 TAG, "Changing focus from " + mCurrentFocus + " to " + newFocus);
9185 mCurrentFocus = newFocus;
9186 mAnimator.setCurrentFocus(newFocus);
9187 mLosingFocus.remove(newFocus);
9188 int focusChanged = mPolicy.focusChangedLw(oldFocus, newFocus);
9191 if (newFocus != imWindow && oldFocus != imWindow) {