Searched refs:oldView (Results 1 – 6 of 6) sorted by relevance
182 for (ActivatableNotificationView oldView : oldViews) { in handleRemovedOldViews()183 if (oldView != null) { in handleRemovedOldViews()190 if (newView == oldView) { in handleRemovedOldViews()192 if (oldView.isFirstInSection() != isFirstInSection(oldView, in handleRemovedOldViews()194 || oldView.isLastInSection() != isLastInSection(oldView, in handleRemovedOldViews()203 if (!oldView.isRemoved()) { in handleRemovedOldViews()204 updateViewWithoutCallback(oldView, oldView.isShown()); in handleRemovedOldViews()220 for (ActivatableNotificationView oldView : oldViews) { in handleAddedNewViews()221 if (oldView == newView) { in handleAddedNewViews()
172 View oldView = null; in refresh() local174 oldView = viewGroup.getChildAt(i); in refresh()176 View newView = mAdapter.getView(i, oldView, viewGroup); in refresh()177 if (oldView == null) { in refresh()180 } else if (oldView != newView) { in refresh()
209 View oldView = null; in refresh() local211 oldView = mUserSwitcher.getChildAt(i); in refresh()213 View newView = mAdapter.getView(i, oldView, mUserSwitcher); in refresh()214 if (oldView == null) { in refresh()217 } else if (oldView != newView) { in refresh()
790 final RemoteViews oldView) { in canReapplyRemoteView() argument791 return (newView == null && oldView == null) || in canReapplyRemoteView()792 (newView != null && oldView != null in canReapplyRemoteView()793 && oldView.getPackage() != null in canReapplyRemoteView()795 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()796 && newView.getLayoutId() == oldView.getLayoutId() in canReapplyRemoteView()797 && !oldView.hasFlags(RemoteViews.FLAG_REAPPLY_DISALLOWED)); in canReapplyRemoteView()
547 KeyguardSecurityView oldView = getSecurityView(mCurrentSecuritySelection); in showSecurityScreen()551 if (oldView != null) { in showSecurityScreen()552 oldView.onPause(); in showSecurityScreen()553 oldView.setKeyguardCallback(mNullCallback); // ignore requests from old view in showSecurityScreen()
1752 View oldView = oldInfo.view; in playTransition() local1753 TransitionValues startValues = getTransitionValues(oldView, true); in playTransition()1754 TransitionValues endValues = getMatchedTransitionValues(oldView, true); in playTransition()1756 endValues = mEndValues.viewValues.get(oldView); in playTransition()