/aosp12/packages/apps/TV/src/com/android/tv/guide/ |
H A D | ProgramGrid.java | 348 View childView = getChildAt(i); in getFirstVisibleChildIndex() local 349 int childTop = mLayoutManager.getDecoratedTop(childView); in getFirstVisibleChildIndex() 350 int childBottom = mLayoutManager.getDecoratedBottom(childView); in getFirstVisibleChildIndex() 367 View childView = getChildAt(firstVisibleChildIndex); in updateInputLogo() local 368 int childAdapterPosition = getChildAdapterPosition(childView); in updateInputLogo() 369 ((ProgramTableAdapter.ProgramRowViewHolder) getChildViewHolder(childView)) in updateInputLogo() 372 childView = getChildAt(i); in updateInputLogo() 373 ((ProgramTableAdapter.ProgramRowViewHolder) getChildViewHolder(childView)) in updateInputLogo() 375 childAdapterPosition = getChildAdapterPosition(childView); in updateInputLogo()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRowController.java | 237 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in addChildAt() local 240 mListContainer.notifyGroupChildAdded(childView); in addChildAt() 245 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in moveChildTo() local 246 mView.removeChildNotification(childView); in moveChildTo() 247 mView.addChildNotification(childView, index); in moveChildTo() 252 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in removeChild() local 254 mView.removeChildNotification(childView); in removeChild() 256 mListContainer.notifyGroupChildRemoved(childView, mView); in removeChild()
|
H A D | ExpandableNotificationRow.java | 1895 private void updateChildAccessibilityImportance(View childView, boolean isEnabled) { 1896 childView.setImportantForAccessibility(isEnabled
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | NotificationViewHierarchyManager.java | 370 ExpandableNotificationRow childView = orderedChildren.get(childIndex).getRow(); in addNotificationChildrenAndSort() local 371 if (children == null || !children.contains(childView)) { in addNotificationChildrenAndSort() 372 if (childView.getParent() != null) { in addNotificationChildrenAndSort() 374 + "a parent. class:" + childView.getParent().getClass() in addNotificationChildrenAndSort() 375 + "\n child: " + childView); in addNotificationChildrenAndSort() 377 ((ViewGroup) childView.getParent()).removeView(childView); in addNotificationChildrenAndSort() 379 mVisualStabilityManager.notifyViewAddition(childView); in addNotificationChildrenAndSort() 380 parent.addChildNotification(childView, childIndex); in addNotificationChildrenAndSort() 381 mListContainer.notifyGroupChildAdded(childView); in addNotificationChildrenAndSort() 383 orderedRows.add(childView); in addNotificationChildrenAndSort()
|
H A D | NotificationGroupingUtil.java | 341 TextView childView = (TextView) child; in compare() local 342 CharSequence childText = childView == null ? "" : childView.getText(); in compare()
|
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
H A D | DocsItemDetailsLookup.java | 45 View childView = mRecView.findChildViewUnder(e.getX(), e.getY()); in getDocumentHolder() local 46 if (childView != null) { in getDocumentHolder() 47 ViewHolder holder = mRecView.getChildViewHolder(childView); in getDocumentHolder()
|
H A D | DirectoryFragment.java | 664 View childView = mRecView.findChildViewUnder(e.getX(), e.getY()); in onContextMenuClick() local 665 ViewHolder holder = mRecView.getChildViewHolder(childView); in onContextMenuClick()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/widget/ |
H A 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()
|
/aosp12/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/template/ |
H A 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()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/ |
H A D | CustomHeaderPagerListViewHolder.java | 118 final View childView = mListView.getChildAt(i); in toggleVisibilityForPendingTransition() local 119 if (childView != epicenterView) { in toggleVisibilityForPendingTransition() 120 childView.setVisibility(show ? View.VISIBLE : View.INVISIBLE); in toggleVisibilityForPendingTransition()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
H A D | ShadeViewDiffer.kt | 78 val childView = parentNode.getChildAt(i) regex 79 views[childView]?.let { childNode ->
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/popup/ |
H A D | ArrowPopup.java | 380 View childView = ((ViewGroup) view).getChildAt(i); in initColorExtractionLocations() 381 setChildColor(childView, newColor, colors); in initColorExtractionLocations() 756 View childView = ((ViewGroup) view).getChildAt(j); in fadeInChildViews() local 757 childView.setAlpha(alphaValues[0]); in fadeInChildViews() 758 ValueAnimator childFade = ObjectAnimator.ofFloat(childView, ALPHA, alphaValues); in fadeInChildViews()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | NotificationPanelViewController.java | 1054 View childView = parentView.getChildAt(i); in ensureAllViewsHaveIds() local 1055 if (childView.getId() == View.NO_ID) { in ensureAllViewsHaveIds() 1056 childView.setId(View.generateViewId()); in ensureAllViewsHaveIds()
|