Home
last modified time | relevance | path

Searched refs:childView (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowControllerTest.kt199 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/
DExpandableNotificationRowController.java368 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 …]
DExpandableNotificationRow.java2257 private void updateChildAccessibilityImportance(View childView, boolean isEnabled) {
2258 childView.setImportantForAccessibility(isEnabled
/frameworks/base/core/tests/coretests/src/android/widget/
DListViewTest.java55 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/
DScrollViewScrollHandlingDelegateTest.java47 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/
DDisableSubpixelTextTransitionListenerTest.kt38 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/
DNotificationOptimizedLinearLayoutComparisonTest.java343 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/
DShadeViewDiffer.kt78 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/
DTrustedOverlayTests.java185 View childView = new View(mActivity) { in testTrustedOverlayChildHelper() local
195 wm.addView(childView, params); in testTrustedOverlayChildHelper()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationsQSContainerController.kt331 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/
DNotificationGroupingUtil.java347 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/
DKeyguardRootViewBinder.kt240 for ((key, childView) in childViews.entries) { in <lambda>() constant
249 else -> childView.translationX = px in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardClockSwitchController.java733 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/
DAccessibilityCacheTest.java1042 View childView = getMockViewWithA11yAndWindowIds(2, 1); in clearSubtreeWithNode_subtreeInCacheInvalidated() local
1043 childInfo.setSource(childView); in clearSubtreeWithNode_subtreeInCacheInvalidated()
1046 info.addChild(childView); in clearSubtreeWithNode_subtreeInCacheInvalidated()