Home
last modified time | relevance | path

Searched refs:oldView (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationRoundnessManager.java177 for (ExpandableView oldView : oldViews) { in handleRemovedOldViews()
178 if (oldView != null) { in handleRemovedOldViews()
185 if (newView == oldView) { in handleRemovedOldViews()
187 if (oldView.isFirstInSection() != isFirstInSection(oldView, in handleRemovedOldViews()
189 || oldView.isLastInSection() != isLastInSection(oldView, in handleRemovedOldViews()
198 if (!oldView.isRemoved()) { in handleRemovedOldViews()
199 updateViewWithoutCallback(oldView, oldView.isShown()); in handleRemovedOldViews()
215 for (ExpandableView oldView : oldViews) { in handleAddedNewViews()
216 if (oldView == newView) { in handleAddedNewViews()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPseudoGridView.java172 View oldView = null; in refresh() local
174 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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardUserSwitcher.java217 View oldView = null; in refresh() local
219 oldView = mUserSwitcher.getChildAt(i); in refresh()
221 View newView = mAdapter.getView(i, oldView, mUserSwitcher); in refresh()
222 if (oldView == null) { in refresh()
225 } else if (oldView != newView) { in refresh()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java681 final RemoteViews oldView) { in canReapplyRemoteView() argument
682 return (newView == null && oldView == null) || in canReapplyRemoteView()
683 (newView != null && oldView != null in canReapplyRemoteView()
684 && oldView.getPackage() != null in canReapplyRemoteView()
686 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()
687 && newView.getLayoutId() == oldView.getLayoutId() in canReapplyRemoteView()
688 && !oldView.hasFlags(RemoteViews.FLAG_REAPPLY_DISALLOWED)); in canReapplyRemoteView()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java769 KeyguardSecurityView oldView = getSecurityView(mCurrentSecuritySelection); in showSecurityScreen()
773 if (oldView != null) { in showSecurityScreen()
774 oldView.onPause(); in showSecurityScreen()
775 oldView.setKeyguardCallback(mNullCallback); // ignore requests from old view in showSecurityScreen()
/frameworks/base/core/java/android/transition/
DTransition.java1752 View oldView = oldInfo.view; in playTransition() local
1753 TransitionValues startValues = getTransitionValues(oldView, true); in playTransition()
1754 TransitionValues endValues = getMatchedTransitionValues(oldView, true); in playTransition()
1756 endValues = mEndValues.viewValues.get(oldView); in playTransition()