Searched refs:oldView (Results 1 – 6 of 6) sorted by relevance
178 for (ActivatableNotificationView oldView : oldViews) { in handleRemovedOldViews()179 if (oldView != null) { in handleRemovedOldViews()186 if (newView == oldView) { in handleRemovedOldViews()188 if (oldView.isFirstInSection() != isFirstInSection(oldView, in handleRemovedOldViews()190 || oldView.isLastInSection() != isLastInSection(oldView, in handleRemovedOldViews()199 if (!oldView.isRemoved()) { in handleRemovedOldViews()200 updateViewWithoutCallback(oldView, oldView.isShown()); in handleRemovedOldViews()216 for (ActivatableNotificationView oldView : oldViews) { in handleAddedNewViews()217 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()
711 final RemoteViews oldView) { in canReapplyRemoteView() argument712 return (newView == null && oldView == null) || in canReapplyRemoteView()713 (newView != null && oldView != null in canReapplyRemoteView()714 && oldView.getPackage() != null in canReapplyRemoteView()716 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()717 && newView.getLayoutId() == oldView.getLayoutId() in canReapplyRemoteView()718 && !oldView.hasFlags(RemoteViews.FLAG_REAPPLY_DISALLOWED)); in canReapplyRemoteView()
554 KeyguardSecurityView oldView = getSecurityView(mCurrentSecuritySelection); in showSecurityScreen()558 if (oldView != null) { in showSecurityScreen()559 oldView.onPause(); in showSecurityScreen()560 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()