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.java182 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()
/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.java209 View oldView = null; in refresh() local
211 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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java790 final RemoteViews oldView) { in canReapplyRemoteView() argument
791 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()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java547 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()
/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()