Home
last modified time | relevance | path

Searched defs:child (Results 1 – 25 of 330) sorted by relevance

12345678910>>...14

/frameworks/base/core/java/android/view/
DViewParent.java56 public void requestTransparentRegion(View child); in requestTransparentRegion()
72 default void onDescendantInvalidated(@NonNull View child, @NonNull View target) { in onDescendantInvalidated()
88 public void invalidateChild(View child, Rect r); in invalidateChild()
131 public void requestChildFocus(View child, View focused); in requestChildFocus()
139 public void recomputeViewAttributes(View child); in recomputeViewAttributes()
146 public void clearChildFocus(View child); in clearChildFocus()
168 public boolean getChildVisibleRect(View child, Rect r, android.graphics.Point offset); in getChildVisibleRect()
202 public void bringChildToFront(View child); in bringChildToFront()
301 public void childDrawableStateChanged(View child); in childDrawableStateChanged()
340 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, in requestChildRectangleOnScreen()
[all …]
DViewGroup.java844 public void requestChildFocus(View child, View focused) { in requestChildFocus()
868 void setDefaultFocus(View child) { in setDefaultFocus()
887 void clearDefaultFocus(View child) { in clearDefaultFocus()
924 void clearFocusedInCluster(View child) { in clearFocusedInCluster()
1050 View child = getChildAt(i); in dispatchActivityResult() local
1080 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) { in requestChildRectangleOnScreen()
1085 public boolean requestSendAccessibilityEvent(View child, AccessibilityEvent event) { in requestSendAccessibilityEvent()
1113 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) { in onRequestSendAccessibilityEvent()
1128 public boolean onRequestSendAccessibilityEventInternal(View child, AccessibilityEvent event) { in onRequestSendAccessibilityEventInternal()
1136 public void childHasTransientStateChanged(View child, boolean childHasTransientState) { in childHasTransientStateChanged()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DReverseLinearLayout.java51 public void addView(View child) { in addView()
52 reverseParams(child.getLayoutParams(), child, mIsLayoutReverse); in addView() local
61 public void addView(View child, ViewGroup.LayoutParams params) { in addView()
98 final View child = childList.get(i); in updateOrder() local
105 private static void reverseParams(ViewGroup.LayoutParams params, View child, in reverseParams()
160 final View child = group.getChildAt(i); in reverseGroup() local
161 reverseParams(child.getLayoutParams(), child, isLayoutReverse); in reverseGroup() local
DStatusIconContainer.java115 View child = getChildAt(i); in onLayout() local
170 View child = mMeasureViews.get(visibleCount - i - 1); in onMeasure() local
201 public void onViewAdded(View child) { in onViewAdded()
209 public void onViewRemoved(View child) { in onViewRemoved()
279 View child = getChildAt(i); in calculateIconTranslations() local
341 View child = getChildAt(i); in calculateIconTranslations() local
350 View child = getChildAt(i); in applyIconStates() local
360 View child = getChildAt(i); in resetViewStates() local
372 private static @Nullable StatusIconState getViewStateFromChild(View child) { in getViewStateFromChild()
376 private static int getViewTotalMeasuredWidth(View child) { in getViewTotalMeasuredWidth()
[all …]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
DMockView.java71 public void addView(View child) { in addView()
78 public void addView(View child, int index) { in addView()
85 public void addView(View child, int width, int height) { in addView()
92 public void addView(View child, ViewGroup.LayoutParams params) { in addView()
99 public void addView(View child, int index, ViewGroup.LayoutParams params) { in addView()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DDimmerTests.java95 SurfaceControl.Builder makeChildSurface(WindowContainer child) { in makeChildSurface()
183 TestWindowContainer child = new TestWindowContainer(mWm); in testDimAboveWithChildCreatesSurfaceAboveChild() local
198 TestWindowContainer child = new TestWindowContainer(mWm); in testDimBelowWithChildSurfaceCreatesSurfaceBelowChild() local
213 TestWindowContainer child = new TestWindowContainer(mWm); in testDimBelowWithChildSurfaceDestroyedWhenReset() local
230 TestWindowContainer child = new TestWindowContainer(mWm); in testDimBelowWithChildSurfaceNotDestroyedWhenPersisted() local
247 TestWindowContainer child = new TestWindowContainer(mWm); in testDimUpdateWhileDimming() local
268 TestWindowContainer child = new TestWindowContainer(mWm); in testRemoveDimImmediately() local
/frameworks/base/tools/aapt2/
DDominatorTree.cpp54 for (auto& child : children_) { in AddChild() local
66 [](const std::unique_ptr<Node>& child) -> bool { in AddChild()
72 for (auto& child : children_) { in AddChild() local
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
DListSetSelectionTest.java76 View child = mListView.getChildAt(i); in testSetSelection() local
107 View child = mListView.getChildAt(i); in testSetSelectionFromTop() local
142 View child = mListView.getChildAt(i); in testSetSelection0() local
/frameworks/base/core/java/com/android/internal/widget/
DChildHelper.java59 private void hideViewInternal(View child) { in hideViewInternal()
69 private boolean unhideViewInternal(View child) { in unhideViewInternal()
84 void addView(View child, boolean hidden) { in addView()
96 void addView(View child, int index, boolean hidden) { in addView()
227 void attachViewToParent(View child, int index, ViewGroup.LayoutParams layoutParams, in attachViewToParent()
296 int indexOfChild(View child) { in indexOfChild()
517 void addView(View child, int index); in addView()
529 void attachViewToParent(View child, int index, ViewGroup.LayoutParams layoutParams); in attachViewToParent()
533 void onEnteredHiddenState(View child); in onEnteredHiddenState()
535 void onLeftHiddenState(View child); in onLeftHiddenState()
DWatchListDecorLayout.java77 View child = getChildAt(i); in onAttachedToWindow() local
112 private void applyMeasureToChild(View child, int widthMeasureSpec, int heightMeasureSpec) { in applyMeasureToChild()
146 private int measureAndGetHeight(View child, int widthMeasureSpec, int heightMeasureSpec) { in measureAndGetHeight()
172 final View child = getChildAt(i); in onMeasure() local
232 final View child = mMatchParentChildren.get(i); in onMeasure() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/
DTransitionLayout.kt86 val child = getChildAt(i) in onFinishInflate() constant
105 val child = getChildAt(i) in applyCurrentState() constant
170 val child = getChildAt(i) in onMeasure() constant
188 val child = getChildAt(i) in onLayout() constant
254 val child = getChildAt(i) in applySetToFullLayout() constant
272 val child = getChildAt(i) in ensureViewsNotGone() constant
312 val child = transitionLayout.getChildAt(i) in initFromLayout() constant
/frameworks/base/core/java/android/widget/
DLinearLayout.java438 final View child = getVirtualChildAt(i); in drawDividersVertical() local
449 final View child = getLastNonGoneChild(); in drawDividersVertical() local
467 final View child = getVirtualChildAt(i); in getLastNonGoneChild() local
479 final View child = getVirtualChildAt(i); in drawDividersHorizontal() local
495 final View child = getLastNonGoneChild(); in drawDividersHorizontal() local
595 final View child = getChildAt(mBaselineAlignedChildIndex); in getBaseline() local
753 final View child = getVirtualChildAt(i); in allViewsAreGoneBefore() local
799 final View child = getVirtualChildAt(i); in measureVertical() local
921 final View child = getVirtualChildAt(i); in measureVertical() local
964 final View child = getVirtualChildAt(i); in measureVertical() local
[all …]
DTableRow.java102 final View child = getVirtualChildAt(columnIndex); in setColumnCollapsed() local
163 final View child = getChildAt(i); in mapIndexAndColumns() local
191 void measureChildBeforeLayout(View child, int childIndex, in measureChildBeforeLayout()
256 int getChildrenSkipCount(View child, int index) { in getChildrenSkipCount()
267 int getLocationOffset(View child) { in getLocationOffset()
275 int getNextLocationOffset(View child) { in getNextLocationOffset()
297 final View child = getVirtualChildAt(i); in getColumnsWidths() local
534 public void onChildViewAdded(View parent, View child) { in onChildViewAdded()
543 public void onChildViewRemoved(View parent, View child) { in onChildViewRemoved()
DTableLayout.java377 private void trackCollapsedColumns(View child) { in trackCollapsedColumns()
399 public void addView(View child) { in addView()
408 public void addView(View child, int index) { in addView()
417 public void addView(View child, ViewGroup.LayoutParams params) { in addView()
426 public void addView(View child, int index, ViewGroup.LayoutParams params) { in addView()
453 void measureChildBeforeLayout(View child, int childIndex, in measureChildBeforeLayout()
495 final View child = getChildAt(i); in findLargestCells() local
591 View child = getChildAt(i); in mutateColumnsWidth() local
763 public void onChildViewAdded(View parent, View child) { in onChildViewAdded()
774 public void onChildViewRemoved(View parent, View child) { in onChildViewRemoved()
DDayPickerViewPager.java68 final View child = getChildAt(i); in onMeasure() local
106 final View child = mMatchParentChildren.get(i); in onMeasure() local
158 final View child = getChildAt(i); in findViewByPredicateTraversal() local
/frameworks/layoutlib/bridge/src/android/view/
DViewGroup_Delegate.java48 /*package*/ static boolean drawChild(ViewGroup thisVG, Canvas canvas, View child, in drawChild()
68 private static void drawShadow(ViewGroup parent, Canvas canvas, View child, in drawShadow()
112 private static float getElevation(View child, ViewGroup parent) { in getElevation()
133 private static int transformCanvas(ViewGroup thisVG, Canvas canvas, View child) { in transformCanvas()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
DItemInflater.java25 void addChild(ItemHierarchy child); in addChild()
34 protected void onAddChildItem(ItemHierarchy parent, ItemHierarchy child) { in onAddChildItem()
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/view/
DFillContentLayoutTest.java53 View child = new View(application); in testMeasureChildIsSmallerThanMaxSize() local
72 View child = new View(application); in testMeasureChildIsSmallerThanParent() local
/frameworks/layoutlib/studio-custom-widgets/src/com/android/tools/idea/editors/theme/widgets/
DErrorCatcher.java56 View child = getChildAt(0); in onMeasure() local
71 protected boolean drawChild(Canvas canvas, View child, long drawingTime) { in drawChild()
86 View child = getChildAt(0); in onLayout() local
/frameworks/base/apct-tests/perftests/core/src/android/view/
DViewShowHidePerfTest.java141 void run(BenchmarkState state, int width, int height, ViewGroup parent, View child); in run()
173 testParentWithChild((state, width, height, parent, child) -> { in testRemove() argument
189 testParentWithChild((state, width, height, parent, child) -> { in testAdd() argument
205 testParentWithChild((state, width, height, parent, child) -> { in testRecordAfterAdd() argument
220 testParentWithChild((state, width, height, parent, child) -> { in testVisibility() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DMessagingLayoutTransformState.java156 View child = ownMessages.getChildAt(j); in appear() local
189 View child = ownMessages.getChildAt(j); in disappear() local
203 private void appear(View child, float transformationAmount) { in appear()
212 private void disappear(View child, float transformationAmount) { in disappear()
267 View child = ownMessages.get(ownMessages.size() - 1 - i).getView(); in transformGroups() local
428 View child = ownMessages.getChildAt(j); in setVisible() local
441 private void setVisible(View child, boolean visible, boolean force) { in setVisible()
459 View child = ownMessages.getChildAt(j); in resetTransformedView() local
490 private void resetTransformedView(View child) { in resetTransformedView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/animation/
DPhysicsAnimationLayout.java133 abstract void onChildAdded(View child, int index); in onChildAdded()
147 abstract void onChildRemoved(View child, int index, Runnable finishRemoval); in onChildRemoved()
150 abstract void onChildReordered(View child, int oldIndex, int newIndex); in onChildReordered()
185 protected PhysicsPropertyAnimator animationForChild(View child) { in animationForChild()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/animation/
DPhysicsAnimationLayoutTestCase.java181 public void addView(View child, int index) { in addView()
187 public void addView(View child, int index, ViewGroup.LayoutParams params) { in addView()
271 void onChildAdded(View child, int index) { in onChildAdded()
276 void onChildRemoved(View child, int index, Runnable finishRemoval) { in onChildRemoved()
282 void onChildReordered(View child, int oldIndex, int newIndex) { in onChildReordered()
294 protected PhysicsPropertyAnimator animationForChild(View child) { in animationForChild()
/frameworks/base/core/java/android/animation/
DLayoutTransition.java775 final View child = parent.getChildAt(i); in runChangeTransition() local
831 Animator baseAnimator, final long duration, final View child) { in setupChangeAnimation()
1155 private void runAppearingTransition(final ViewGroup parent, final View child) { in runAppearingTransition()
1203 private void runDisappearingTransition(final ViewGroup parent, final View child) { in runDisappearingTransition()
1259 private void addChild(ViewGroup parent, View child, boolean changesLayout) { in addChild()
1325 public void addChild(ViewGroup parent, View child) { in addChild()
1333 public void showChild(ViewGroup parent, View child) { in showChild()
1348 public void showChild(ViewGroup parent, View child, int oldVisibility) { in showChild()
1364 private void removeChild(ViewGroup parent, View child, boolean changesLayout) { in removeChild()
1403 public void removeChild(ViewGroup parent, View child) { in removeChild()
[all …]
/frameworks/base/cmds/statsd/src/condition/
DCombinationConditionTracker.h52 for (const auto& child : mChildren) { in getChangedToTrueDimensions() local
64 for (const auto& child : mChildren) { in getChangedToFalseDimensions() local

12345678910>>...14