/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationRoundnessManager.java | 183 ActivatableNotificationView newView = in handleRemovedOldViews() local 186 if (newView == oldView) { in handleRemovedOldViews() 212 ActivatableNotificationView newView = in handleAddedNewViews() local 214 if (newView != null) { in handleAddedNewViews() 217 if (oldView == newView) { in handleAddedNewViews() 224 updateViewWithoutCallback(newView, in handleAddedNewViews() 225 newView.isShown() && !mAnimatedChildren.contains(newView)); in handleAddedNewViews()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/animation/ |
D | StackAnimationControllerTest.java | 168 final View newView = new FrameLayout(mContext); in testChildAdded() local 170 newView, in testChildAdded() 183 assertEquals(0f, newView.getTranslationX(), .1f); in testChildAdded() 184 assertEquals(500f, newView.getTranslationY(), .1f); in testChildAdded() 185 assertEquals(1f, newView.getScaleX(), .1f); in testChildAdded() 186 assertEquals(1f, newView.getScaleY(), .1f); in testChildAdded() 187 assertEquals(1f, newView.getAlpha(), .1f); in testChildAdded()
|
D | PhysicsAnimationLayoutTestCase.java | 102 final View newView = new FrameLayout(mContext); in addOneMoreThanBubbleLimitBubbles() local 103 mLayout.addView(newView, 0); in addOneMoreThanBubbleLimitBubbles() 104 mViews.add(0, newView); in addOneMoreThanBubbleLimitBubbles() 106 newView.setTranslationX(0); in addOneMoreThanBubbleLimitBubbles() 107 newView.setTranslationY(0); in addOneMoreThanBubbleLimitBubbles()
|
D | ExpandedAnimationControllerTest.java | 102 final View newView = new FrameLayout(getContext()); in testOnChildAdded() local 103 mLayout.addView(newView, 0); in testOnChildAdded()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | AutoSizingList.java | 96 View newView = mAdapter.getView(i, v, this); in rebindChildren() 97 if (newView != v) { in rebindChildren() 101 addView(newView, i); in rebindChildren()
|
D | PseudoGridView.java | 176 View newView = mAdapter.getView(i, oldView, viewGroup); in refresh() local 179 viewGroup.addView(newView); in refresh() 180 } else if (oldView != newView) { in refresh() 183 viewGroup.addView(newView, i); in refresh()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentInflater.java | 549 View newView = existingView; in applyRemoteView() 551 newView = newContentView.apply( in applyRemoteView() 563 onViewApplied(newView); in applyRemoteView() 710 static boolean canReapplyRemoteView(final RemoteViews newView, in canReapplyRemoteView() argument 712 return (newView == null && oldView == null) || in canReapplyRemoteView() 713 (newView != null && oldView != null in canReapplyRemoteView() 715 && newView.getPackage() != null in canReapplyRemoteView() 716 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView() 717 && newView.getLayoutId() == oldView.getLayoutId() in canReapplyRemoteView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardUserSwitcher.java | 213 View newView = mAdapter.getView(i, oldView, mUserSwitcher); in refresh() local 216 mUserSwitcher.addView(newView); in refresh() 217 } else if (oldView != newView) { in refresh() 220 mUserSwitcher.addView(newView, i); in refresh()
|
/frameworks/base/core/java/android/widget/ |
D | CursorAdapter.java | 292 v = newView(mContext, mCursor, parent); in getView() 326 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); in newView() method in CursorAdapter 337 return newView(context, cursor, parent); in newDropDownView()
|
D | ResourceCursorAdapter.java | 134 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ResourceCursorAdapter
|
D | SuggestionsAdapter.java | 284 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in SuggestionsAdapter 285 final View v = super.newView(context, cursor, parent); in newView() 495 View v = newView(mContext, mCursor, parent); in getView()
|
D | AdapterViewAnimator.java | 548 View newView = mAdapter.getView(adapterPosition, null, this); in showOnly() local 556 if (newView != null) { in showOnly() 557 fl.addView(newView); in showOnly()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | DefaultItemAnimator.java | 352 final View newView = newHolder != null ? newHolder.itemView : null; in animateChangeImpl() local 377 if (newView != null) { in animateChangeImpl() 378 final ViewPropertyAnimator newViewAnimation = newView.animate(); in animateChangeImpl() 389 newView.setAlpha(1); in animateChangeImpl() 390 newView.setTranslationX(0); in animateChangeImpl() 391 newView.setTranslationY(0); in animateChangeImpl()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSecurityContainer.java | 555 KeyguardSecurityView newView = getSecurityView(securityMode); in showSecurityScreen() local 563 newView.onResume(KeyguardSecurityView.VIEW_REVEALED); in showSecurityScreen() 564 newView.setKeyguardCallback(mCallback); in showSecurityScreen() 579 mCurrentSecurityView = newView; in showSecurityScreen() 581 securityMode != SecurityMode.None && newView.needsInput()); in showSecurityScreen()
|
/frameworks/ex/common/java/com/android/common/widget/ |
D | CompositeCursorAdapter.java | 400 view = newView(mContext, partition, cursor, position, parent); in getView() 410 protected abstract View newView(Context context, int partition, Cursor cursor, int position, in newView() method in CompositeCursorAdapter
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | RecipientAlternatesAdapter.java | 592 convertView = mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES); in getView() 614 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in RecipientAlternatesAdapter 615 return mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES); in newView()
|
D | DropdownChipLayouter.java | 202 public View newView(AdapterType type) { in newView() method in DropdownChipLayouter
|
/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/ |
D | DeviceDiscoveryService.java | 335 : newView(); in getView() 358 private TextView newView() { in newView() method in DeviceDiscoveryService.DevicesAdapter
|
/frameworks/ex/common/tests/src/com/android/common/widget/ |
D | CompositeCursorAdapterTest.java | 58 protected View newView(Context context, int sectionIndex, Cursor cursor, int position, in newView() method in CompositeCursorAdapterTest.TestCompositeCursorAdapter
|
/frameworks/ex/widget/java/com/android/ex/widget/ |
D | StaggeredGridView.java | 765 View newView = obtainView(position, child); in layoutChildren() local 766 if (newView != child) { in layoutChildren() 768 addView(newView, i); in layoutChildren() 769 child = newView; in layoutChildren()
|
/frameworks/base/core/java/android/animation/ |
D | LayoutTransition.java | 733 private void runChangeTransition(final ViewGroup parent, View newView, final int changeReason) { in runChangeTransition() argument 778 if (child != newView) { in runChangeTransition()
|
/frameworks/ex/common/java/com/android/common/contacts/ |
D | BaseEmailAddressAdapter.java | 314 protected View newView(Context context, int partitionIndex, Cursor cursor, in newView() method in BaseEmailAddressAdapter
|
/frameworks/base/packages/SystemUI/docs/ |
D | physics-animation-layout.md | 89 animationForChild(newView)
|
/frameworks/base/core/java/com/android/internal/app/ |
D | AlertController.java | 1180 public View newView(Context context, Cursor cursor, ViewGroup parent) { in createListView()
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 1239 void setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) { in setLayoutParams() argument 1295 if (newView) { in setLayoutParams()
|