/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRowControllerTest.kt | 199 val childView: ExpandableNotificationRow = mock() in removeChild_whenTransfer() constant 200 val childNodeController = FakeNodeController(childView) in removeChild_whenTransfer() 206 verify(childView).isChangingPosition = eq(true) in removeChild_whenTransfer() 207 verify(view).removeChildNotification(eq(childView)) in removeChild_whenTransfer() 213 val childView: ExpandableNotificationRow = mock() in removeChild_whenNotTransfer() constant 214 val childNodeController = FakeNodeController(childView) in removeChild_whenNotTransfer() 220 verify(childView, never()).isChangingPosition = any() in removeChild_whenNotTransfer() 221 verify(view).removeChildNotification(eq(childView)) in removeChild_whenNotTransfer() 222 verify(listContainer).notifyGroupChildRemoved(eq(childView), eq(childrenContainer)) in removeChild_whenNotTransfer() 262 val childView: NotificationContentView = mock() in settingsListener_validUserId() constant [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRowController.java | 368 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in addChildAt() local 371 mListContainer.notifyGroupChildAdded(childView); in addChildAt() 372 childView.setChangingPosition(false); in addChildAt() 377 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in moveChildTo() local 378 childView.setChangingPosition(true); in moveChildTo() 379 mView.removeChildNotification(childView); in moveChildTo() 380 mView.addChildNotification(childView, index); in moveChildTo() 381 childView.setChangingPosition(false); in moveChildTo() 386 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in removeChild() local 389 childView.setChangingPosition(true); in removeChild() [all …]
|
D | ExpandableNotificationRow.java | 2257 private void updateChildAccessibilityImportance(View childView, boolean isEnabled) { 2258 childView.setImportantForAccessibility(isEnabled
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | ListViewTest.java | 55 MockView childView = (MockView) listView.getChildAt(0); in testRequestLayout() local 57 childView.requestLayout(); in testRequestLayout() 58 childView.onMeasureCalled = false; in testRequestLayout() 61 Assert.assertTrue(childView.onMeasureCalled); in testRequestLayout()
|
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/template/ |
D | ScrollViewScrollHandlingDelegateTest.java | 47 View childView = new View(application); in setUp() local 48 scrollView.addView(childView); in setUp() 52 childView.layout(0, 0, 1000, 1000); in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/animation/ |
D | DisableSubpixelTextTransitionListenerTest.kt | 38 private var childView = FrameLayout(context) variable 46 childView.addView(childOfChildTextView) in setup() 48 rootView.addView(childView) in setup()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/ |
D | NotificationOptimizedLinearLayoutComparisonTest.java | 343 final View childView = new TextView(mContext); in buildChildView() local 347 childView.setLayoutParams(params); in buildChildView() 348 return childView; in buildChildView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
D | ShadeViewDiffer.kt | 78 val childView = parentNode.getChildAt(i) in <lambda>() constant 79 views[childView]?.let { childNode -> in <lambda>()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TrustedOverlayTests.java | 185 View childView = new View(mActivity) { in testTrustedOverlayChildHelper() local 195 wm.addView(childView, params); in testTrustedOverlayChildHelper()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
D | NotificationsQSContainerController.kt | 331 val childView = parentView.getChildAt(i) in <lambda>() constant 332 if (childView.id == View.NO_ID) { in <lambda>() 333 childView.id = View.generateViewId() in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationGroupingUtil.java | 347 TextView childView = (TextView) child; in compare() local 348 CharSequence childText = childView == null ? "" : childView.getText(); in compare()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/ |
D | KeyguardRootViewBinder.kt | 240 for ((key, childView) in childViews.entries) { in <lambda>() constant 249 else -> childView.translationX = px in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardClockSwitchController.java | 733 final View childView = mStatusArea.getChildAt(i); in removeViewsFromStatusArea() local 734 if (childView.getTag(R.id.tag_smartspace_view) != null) { in removeViewsFromStatusArea()
|
/frameworks/base/core/tests/coretests/src/android/view/accessibility/ |
D | AccessibilityCacheTest.java | 1042 View childView = getMockViewWithA11yAndWindowIds(2, 1); in clearSubtreeWithNode_subtreeInCacheInvalidated() local 1043 childInfo.setSource(childView); in clearSubtreeWithNode_subtreeInCacheInvalidated() 1046 info.addChild(childView); in clearSubtreeWithNode_subtreeInCacheInvalidated()
|