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.java178 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()
/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.java711 final RemoteViews oldView) { in canReapplyRemoteView() argument
712 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()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java554 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()
/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()