Searched refs:oldView (Results 1 – 6 of 6) sorted by relevance
177 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()
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()
217 View oldView = null; in refresh() local219 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()
681 final RemoteViews oldView) { in canReapplyRemoteView() argument682 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()
769 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()
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()