Searched refs:child (Results 26 - 50 of 358) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/widget/
H A DDayPickerViewPager.java73 final View child = getChildAt(i);
74 if (child.getVisibility() != GONE) {
75 measureChild(child, widthMeasureSpec, heightMeasureSpec);
76 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
77 maxWidth = Math.max(maxWidth, child.getMeasuredWidth());
78 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
79 childState = combineMeasuredStates(childState, child.getMeasuredState());
83 mMatchParentChildren.add(child);
111 final View child = mMatchParentChildren.get(i);
113 final LayoutParams lp = (LayoutParams) child
[all...]
H A DLinearLayout.java44 * You can also specify gravity, which specifies the alignment of all the child elements by
118 * use the child at this index as the baseline.
127 * The additional offset to the child's baseline.
361 final View child = getVirtualChildAt(i);
362 if (child != null && child.getVisibility() != GONE) {
364 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
365 final int top = child.getTop() - lp.topMargin - mDividerHeight;
372 final View child = getLastNonGoneChild();
374 if (child
1433 getChildrenSkipCount(View child, int index) argument
1461 measureChildBeforeLayout(View child, int childIndex, int widthMeasureSpec, int totalWidth, int heightMeasureSpec, int totalHeight) argument
1475 getLocationOffset(View child) argument
1487 getNextLocationOffset(View child) argument
1740 setChildFrame(View child, int left, int top, int width, int height) argument
[all...]
H A DTableRow.java32 * always be used as a child of a {@link android.widget.TableLayout}. If a
101 final View child = getVirtualChildAt(columnIndex);
102 if (child != null) {
103 child.setVisibility(collapsed ? GONE : VISIBLE);
162 final View child = getChildAt(i);
163 final LayoutParams layoutParams = (LayoutParams) child.getLayoutParams();
190 void measureChildBeforeLayout(View child, int childIndex, argument
194 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
222 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
225 final int childWidth = child
255 getChildrenSkipCount(View child, int index) argument
266 getLocationOffset(View child) argument
274 getNextLocationOffset(View child) argument
531 onChildViewAdded(View parent, View child) argument
540 onChildViewRemoved(View parent, View child) argument
[all...]
H A DTextSwitcher.java57 * @throws IllegalArgumentException if child is not an instance of
61 public void addView(View child, int index, ViewGroup.LayoutParams params) { argument
62 if (!(child instanceof TextView)) {
67 super.addView(child, index, params);
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingLinearLayout.java52 * Id of the child that's also visible in the contracted layout.
108 final View child = getChildAt(i);
109 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
122 final View child = getChildAt(i);
125 if (child instanceof ImageFloatingTextView) {
129 ((ImageFloatingTextView) child).setNumIndentLines(mIndentLines);
132 measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
134 final int childHeight = child.getMeasuredHeight();
151 final View child = getChildAt(i);
152 final LayoutParams lp = (LayoutParams) child
235 drawChild(Canvas canvas, View child, long drawingTime) argument
[all...]
H A DWatchListDecorLayout.java36 * Use with one ListView child. The top and bottom panels will track the ListView's scrolling.
37 * If there is no ListView child, it will act like a normal FrameLayout.
77 View child = getChildAt(i);
78 if (child instanceof ListView) {
80 throw new IllegalArgumentException("only one ListView child allowed");
82 mListView = (ListView) child;
88 int gravity = (((LayoutParams) child.getLayoutParams()).gravity
91 mTopPanel = child;
93 mBottomPanel = child;
112 private void applyMeasureToChild(View child, in argument
146 measureAndGetHeight(View child, int widthMeasureSpec, int heightMeasureSpec) argument
[all...]
H A DDialogViewAnimator.java55 final View child = getChildAt(i);
56 if (getMeasureAllChildren() || child.getVisibility() != GONE) {
57 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
61 mMatchParentChildren.add(child);
64 measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
71 maxWidth = Math.max(maxWidth, child.getMeasuredWidth()
73 state |= child.getMeasuredWidthAndState() & MEASURED_STATE_MASK;
77 maxHeight = Math.max(maxHeight, child.getMeasuredHeight()
79 state |= (child.getMeasuredHeightAndState() >> MEASURED_HEIGHT_STATE_SHIFT)
109 final View child
[all...]
/frameworks/base/tests/WindowAnimationJank/src/android/windowanimationjank/
H A DFlowLayout.java55 final View child = getChildAt(i);
56 if (child.getVisibility() != GONE) {
57 child.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.AT_MOST),
59 final int childWidth = child.getMeasuredWidth();
60 lineHeight = Math.max(lineHeight, child.getMeasuredHeight());
98 final View child = getChildAt(i);
99 if (child.getVisibility() != GONE) {
100 final int childWidth = child.getMeasuredWidth();
101 final int childHeight = child.getMeasuredHeight();
106 child
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintOptionsLayout.java78 View child = getChildAt(childIndex);
80 if (child.getVisibility() == GONE) {
84 MarginLayoutParams childParams = (MarginLayoutParams) child.getLayoutParams();
99 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
101 childState = combineMeasuredStates(childState, child.getMeasuredState());
103 rowWidth += child.getMeasuredWidth() + childParams.getMarginStart()
106 rowHeight = Math.max(rowHeight, child.getMeasuredHeight() + childParams.topMargin
143 View child = getChildAt(childIndex);
145 if (child.getVisibility() == GONE) {
149 MarginLayoutParams childParams = (MarginLayoutParams) child
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DReverseLinearLayout.java50 public void addView(View child) { argument
51 reversParams(child.getLayoutParams());
53 super.addView(child, 0);
55 super.addView(child);
60 public void addView(View child, ViewGroup.LayoutParams params) { argument
63 super.addView(child, 0, params);
65 super.addView(child, params);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDayPickerView.java189 View child;
192 // Find a child that's completely in the view
194 child = getChildAt(i++);
195 if (child == null) {
198 top = child.getTop();
200 Log.d(TAG, "child at " + (i - 1) + " has top " + top);
206 if (child != null) {
207 selectedPosition = getPositionForView(child);
256 MonthView child = (MonthView) view.getChildAt(0);
257 if (child
[all...]
/frameworks/support/compat/java/android/support/v4/view/
H A DViewParentCompat.java37 ViewParent parent, View child, AccessibilityEvent event);
38 boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
40 void onNestedScrollAccepted(ViewParent parent, View child, View target, argument
49 void notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, argument
56 ViewParent parent, View child, AccessibilityEvent event) {
58 if (child == null) {
61 final AccessibilityManager manager = (AccessibilityManager) child.getContext()
68 public boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
71 return ((NestedScrollingParent) parent).onStartNestedScroll(child, target,
78 public void onNestedScrollAccepted(ViewParent parent, View child, Vie argument
36 requestSendAccessibilityEvent( ViewParent parent, View child, AccessibilityEvent event) argument
55 requestSendAccessibilityEvent( ViewParent parent, View child, AccessibilityEvent event) argument
131 notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, View source, int changeType) argument
138 requestSendAccessibilityEvent( ViewParent parent, View child, AccessibilityEvent event) argument
147 notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, View source, int changeType) argument
156 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
163 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
237 requestSendAccessibilityEvent( ViewParent parent, View child, AccessibilityEvent event) argument
264 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes) argument
285 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes) argument
420 notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, View source, int changeType) argument
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DAppBarLayout.java60 * This view depends heavily on being used as a direct child within a {@link CoordinatorLayout}.
120 * child views to implement custom behavior based on the offset (for instance pinning a
231 final View child = getChildAt(i);
232 final LayoutParams childLp = (LayoutParams) child.getLayoutParams();
276 * direct child of a {@link CoordinatorLayout}.</p>
291 * direct child of a {@link CoordinatorLayout}.</p>
346 final View child = getChildAt(i);
347 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
348 final int childHeight = child.getMeasuredHeight();
352 // We're set to scroll so add the child'
799 onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child, View directTargetChild, View target, int nestedScrollAxes) argument
819 onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dx, int dy, int[] consumed) argument
837 onNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
869 onNestedFling(final CoordinatorLayout coordinatorLayout, final AppBarLayout child, View target, float velocityX, float velocityY, boolean consumed) argument
916 animateOffsetTo(final CoordinatorLayout coordinatorLayout, final AppBarLayout child, final int offset, float velocity) argument
932 animateOffsetWithDuration(final CoordinatorLayout coordinatorLayout, final AppBarLayout child, final int offset, final int duration) argument
1018 onMeasureChild(CoordinatorLayout parent, AppBarLayout child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
1382 layoutDependsOn(CoordinatorLayout parent, View child, View dependency) argument
1388 onDependentViewChanged(CoordinatorLayout parent, View child, View dependency) argument
1395 onRequestChildRectangleOnScreen(CoordinatorLayout parent, View child, Rect rectangle, boolean immediate) argument
1415 offsetChildAsNeeded(CoordinatorLayout parent, View child, View dependency) argument
[all...]
H A DViewOffsetBehavior.java40 public boolean onLayoutChild(CoordinatorLayout parent, V child, int layoutDirection) { argument
41 // First let lay the child out
42 layoutChild(parent, child, layoutDirection);
45 mViewOffsetHelper = new ViewOffsetHelper(child);
61 protected void layoutChild(CoordinatorLayout parent, V child, int layoutDirection) { argument
63 parent.onLayoutChild(child, layoutDirection);
H A DCoordinatorLayout.java84 * <li>As a container for a specific interaction with one or more child views</li>
87 * <p>By specifying {@link CoordinatorLayout.Behavior Behaviors} for child views of a
90 * used as a child of a CoordinatorLayout using the
99 * to an arbitrary descendant of the CoordinatorLayout, but it may not be the anchored child itself
100 * or a descendant of the anchored child. This can be used to place floating views relative to
104 * view insets the CoordinatorLayout. Any child views which are set to dodge the same inset edges by
380 final View child = getChildAt(i);
381 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
388 * Populate a list with the current child views, sorted such that the topmost views
398 final View child
608 getResolvedLayoutParams(View child) argument
701 onMeasureChild(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
825 onLayoutChild(View child, int layoutDirection) argument
883 recordLastChildRect(View child, Rect r) argument
895 getLastChildRect(View child, Rect out) argument
909 getChildRect(View child, boolean transform, Rect out) argument
921 getDesiredAnchoredChildRectWithoutConstraints(View child, int layoutDirection, Rect anchorRect, Rect out, LayoutParams lp, int childWidth, int childHeight) argument
1020 getDesiredAnchoredChildRect(View child, int layoutDirection, Rect anchorRect, Rect out) argument
1036 layoutChildWithAnchor(View child, View anchor, int layoutDirection) argument
1058 layoutChildWithKeyline(View child, int keyline, int layoutDirection) argument
1121 layoutChild(View child, int layoutDirection) argument
1170 drawChild(Canvas canvas, View child, long drawingTime) argument
1311 offsetChildByInset(final View child, final Rect inset, final int layoutDirection) argument
1378 setInsetOffsetX(View child, int offsetX) argument
1387 setInsetOffsetY(View child, int offsetY) argument
1430 getDependencies(@onNull View child) argument
1448 getDependents(@onNull View child) argument
1489 hasDependencies(View child) argument
1534 offsetChildToAnchor(View child, int layoutDirection) argument
1581 isPointInChildBounds(View child, int x, int y) argument
1634 onStartNestedScroll(View child, View target, int nestedScrollAxes) argument
1656 onNestedScrollAccepted(View child, View target, int nestedScrollAxes) argument
1917 onInterceptTouchEvent(CoordinatorLayout parent, V child, MotionEvent ev) argument
1936 onTouchEvent(CoordinatorLayout parent, V child, MotionEvent ev) argument
1956 getScrimColor(CoordinatorLayout parent, V child) argument
1974 getScrimOpacity(CoordinatorLayout parent, V child) argument
1990 blocksInteractionBelow(CoordinatorLayout parent, V child) argument
2016 layoutDependsOn(CoordinatorLayout parent, V child, View dependency) argument
2045 onDependentViewChanged(CoordinatorLayout parent, V child, View dependency) argument
2063 onDependentViewRemoved(CoordinatorLayout parent, V child, View dependency) argument
2071 isDirty(CoordinatorLayout parent, V child) argument
2095 onMeasureChild(CoordinatorLayout parent, V child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
2125 onLayoutChild(CoordinatorLayout parent, V child, int layoutDirection) argument
2138 setTag(View child, Object tag) argument
2150 getTag(View child) argument
2177 onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) argument
2202 onNestedScrollAccepted(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) argument
2227 onStopNestedScroll(CoordinatorLayout coordinatorLayout, V child, View target) argument
2259 onNestedScroll(CoordinatorLayout coordinatorLayout, V child, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) argument
2292 onNestedPreScroll(CoordinatorLayout coordinatorLayout, V child, View target, int dx, int dy, int[] consumed) argument
2324 onNestedFling(CoordinatorLayout coordinatorLayout, V child, View target, float velocityX, float velocityY, boolean consumed) argument
2352 onNestedPreFling(CoordinatorLayout coordinatorLayout, V child, View target, float velocityX, float velocityY) argument
2372 onApplyWindowInsets(CoordinatorLayout coordinatorLayout, V child, WindowInsetsCompat insets) argument
2394 onRequestChildRectangleOnScreen(CoordinatorLayout coordinatorLayout, V child, Rect rectangle, boolean immediate) argument
2411 onRestoreInstanceState(CoordinatorLayout parent, V child, Parcelable state) argument
2433 onSaveInstanceState(CoordinatorLayout parent, V child) argument
2450 getInsetDodgeRect(@onNull CoordinatorLayout parent, @NonNull V child, @NonNull Rect rect) argument
2684 isBlockingInteractionBelow(CoordinatorLayout parent, View child) argument
2737 dependsOn(CoordinatorLayout parent, View child, View dependency) argument
2860 onChildViewAdded(View parent, View child) argument
2867 onChildViewRemoved(View parent, View child) argument
2927 requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java141 * apply on the child being drawn.
156 // Current frontmost child that can accept drag and lies under the drag location.
228 // When set, ViewGroup invalidates only the child's rectangle
237 // a child needs to be invalidated and FLAG_OPTIMIZE_INVALIDATE is set
271 * to get the index of the child to draw for that iteration.
280 * invoked when a child is drawn.
342 * When set, this ViewGroup will split MotionEvents to multiple child Views when appropriate.
392 * coordinates within the initiating child view.
451 // Index of the child's left position in the mLocation array
453 // Index of the child'
721 requestChildFocus(View child, View focused) argument
878 requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) argument
883 requestSendAccessibilityEvent(View child, AccessibilityEvent event) argument
911 onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) argument
926 onRequestSendAccessibilityEventInternal(View child, AccessibilityEvent event) argument
934 childHasTransientStateChanged(View child, boolean childHasTransientState) argument
965 clearChildFocus(View child) argument
1248 onChildVisibilityChanged(View child, int oldVisibility, int newVisibility) argument
1321 recomputeViewAttributes(View child) argument
1343 bringChildToFront(View child) argument
1537 notifyChildOfDragStart(View child) argument
1713 dispatchResolvePointerIcon(MotionEvent event, int pointerIndex, View child) argument
2107 dispatchTransformedGenericPointerEvent(MotionEvent event, View child) argument
2132 getTransformedMotionEvent(MotionEvent event, View child) argument
2466 getTouchTarget(@onNull View child) argument
2479 addTouchTarget(@onNull View child, int pointerIdBits) argument
2542 canViewReceivePointerEvents(@onNull View child) argument
2560 isTransformedTouchPointInView(float x, float y, View child, PointF outLocalPoint) argument
2576 transformPointToViewLocal(float[] point, View child) argument
2590 dispatchTransformedTouchEvent(MotionEvent event, boolean cancel, View child, int desiredPointerIdBits) argument
3092 notifySubtreeAccessibilityStateChanged(View child, View source, int changeType) argument
3708 recreateChildDisplayList(View child) argument
3726 drawChild(Canvas canvas, View child, long drawingTime) argument
3927 getChildStaticTransformation(View child, Transformation t) argument
4170 addView(View child) argument
4187 addView(View child, int index) argument
4211 addView(View child, int width, int height) argument
4229 addView(View child, LayoutParams params) argument
4244 addView(View child, int index, LayoutParams params) argument
4288 onChildViewAdded(View parent, View child) argument
4296 onChildViewRemoved(View parent, View child) argument
4309 dispatchViewAdded(View child) argument
4322 onViewAdded(View child) argument
4325 dispatchViewRemoved(View child) argument
4338 onViewRemoved(View child) argument
4370 addViewInLayout(View child, int index, LayoutParams params) argument
4387 addViewInLayout(View child, int index, LayoutParams params, boolean preventRequestLayout) argument
4403 cleanupLayoutState(View child) argument
4407 addViewInner(View child, int index, LayoutParams params, boolean preventRequestLayout) argument
4496 addInArray(View child, int index) argument
4583 bindLayoutAnimation(View child) argument
4598 attachLayoutAnimationParameters(View child, LayoutParams params, int index, int count) argument
4951 removeDetachedView(View child, boolean animate) argument
5002 attachViewToParent(View child, int index, LayoutParams params) argument
5041 detachViewFromParent(View child) argument
5123 invalidateChild(View child, final Rect dirty) argument
5292 damageChildDeferred(View child) argument
5314 damageChild(View child, final Rect dirty) argument
5492 getChildVisibleRect(View child, Rect r, android.graphics.Point offset) argument
5502 getChildVisibleRect( View child, Rect r, android.graphics.Point offset, boolean forceParentCheck) argument
5981 indexOfChild(View child) argument
6045 measureChild(View child, int parentWidthMeasureSpec, int parentHeightMeasureSpec) argument
6071 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
6399 requestTransparentRegion(View child) argument
6525 childDrawableStateChanged(View child) argument
6774 onStartNestedScroll(View child, View target, int nestedScrollAxes) argument
6782 onNestedScrollAccepted(View child, View target, int axes) argument
6793 onStopNestedScroll(View child) argument
6852 onSetLayoutParams(View child, LayoutParams layoutParams) argument
7598 public View child; field in class:ViewGroup.TouchTarget
7609 obtain(@onNull View child, int pointerIdBits) argument
7656 public View child; field in class:ViewGroup.HoverTarget
7664 obtain(@onNull View child) argument
7739 getChildIndex(View child) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DDropDownListView.java124 final View child = getChildAt(position - getFirstVisiblePosition());
125 setPressedItem(child, position, x, y);
129 clickPressedItem(child, position);
157 private void clickPressedItem(final View child, final int position) { argument
159 performItemClick(child, position, id);
190 private void setPressedItem(View child, int position, float x, float y) { argument
201 // Next, run layout to stabilize child positions.
208 if (motionView != null && motionView != child && motionView.isPressed()) {
214 // Offset for child coordinates.
215 final float childX = x - child
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMOTree.java36 XMLNode child = children.next();
37 if (child.getTag().equals(OMAConstants.SyncMLVersionTag)) {
38 dtdRev = child.getText();
49 for (XMLNode child : node.getChildren()) {
50 buildNode(mRoot, child);
128 for (XMLNode child : node.getChildren()) {
129 XMLNode old = checkMap.put(child.getTag(), child);
131 switch (child.getTag()) {
135 curValue = new NodeData(child
[all...]
H A DOMAConstructed.java28 OMANode child = value != null ?
31 mChildren.put(name, child);
32 return child;
41 throw new IOException("No child node '" + element + "' in " + getPathString());
43 throw new IOException("Cannot add child to leaf node: " + getPathString());
54 public void addChild(OMANode child) { argument
55 mChildren.put(child.getName(), child.reparent(this));
63 OMANode child = mChildren.get(tag);
64 if (child !
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOTree.java33 XMLNode child = children.next();
34 if (child.getTag().equals(OMAConstants.SyncMLVersionTag)) {
35 dtdRev = child.getText();
46 for (XMLNode child : node.getChildren()) {
47 buildNode(mRoot, child);
132 for (XMLNode child : node.getChildren()) {
133 XMLNode old = checkMap.put(child.getTag(), child);
135 switch (child.getTag()) {
139 curValue = new NodeData(child
[all...]
H A DOMAConstructed.java28 OMANode child = value != null ?
31 mChildren.put(name, child);
32 return child;
41 throw new IOException("No child node '" + element + "' in " + getPathString());
43 throw new IOException("Cannot add child to leaf node: " + getPathString());
54 public void addChild(OMANode child) { argument
55 mChildren.put(child.getName(), child.reparent(this));
63 OMANode child = mChildren.get(tag);
64 if (child !
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DInputMonitor.java180 final WindowState child, int flags, final int type, final boolean isVisible,
183 inputWindowHandle.name = child.toString();
184 flags = child.getTouchableRegion(inputWindowHandle.touchableRegion, flags);
187 inputWindowHandle.dispatchingTimeoutNanos = child.getInputDispatchingTimeoutNanos();
189 inputWindowHandle.canReceiveKeys = child.canReceiveKeys();
192 inputWindowHandle.paused = child.mAppToken != null ? child.mAppToken.paused : false;
193 inputWindowHandle.layer = child.mLayer;
194 inputWindowHandle.ownerPid = child.mSession.mPid;
195 inputWindowHandle.ownerUid = child
179 addInputWindowHandleLw(final InputWindowHandle inputWindowHandle, final WindowState child, int flags, final int type, final boolean isVisible, final boolean hasFocus, final boolean hasWallpaper) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackScrollAlgorithm.java130 View child = algorithmState.visibleChildren.get(i);
131 StackViewState childViewState = resultState.getViewStateForView(child);
146 ExpandableView child = algorithmState.visibleChildren.get(i);
147 StackViewState state = resultState.getViewStateForView(child);
148 if (!child.mustStayOnScreen()) {
155 boolean isHeadsUp = (child instanceof ExpandableNotificationRow)
156 && ((ExpandableNotificationRow) child).isPinned();
166 if (!child.isTransparent()) {
197 View child = algorithmState.visibleChildren.get(i);
198 StackViewState childViewState = resultState.getViewStateForView(child);
388 getPaddingAfterChild(StackScrollAlgorithmState algorithmState, ExpandableView child) argument
482 getMaxAllowedChildHeight(View child) argument
490 updateStateForChildTransitioningInBottom(StackScrollAlgorithmState algorithmState, float transitioningPositionStart, ExpandableView child, float currentYPosition, StackViewState childViewState, int childHeight) argument
514 updateStateForChildFullyInBottomStack(StackScrollAlgorithmState algorithmState, float transitioningPositionStart, StackViewState childViewState, int collapsedHeight, AmbientState ambientState, ExpandableView child) argument
550 updateFirstChildHeight(ExpandableView child, StackViewState childViewState, int childHeight, AmbientState ambientState) argument
613 isMaxSizeInitialized(ExpandableView child) argument
[all...]
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
H A DCustomLayout.java43 View child = getChildAt(i);
44 CustomLayout.LayoutParams lp = (CustomLayout.LayoutParams) child.getLayoutParams();
45 child.layout(lp.mLeft, lp.mTop, lp.mRight, lp.mBottom);
/frameworks/support/design/tests/src/android/support/design/custom/
H A DTestFloatingBehavior.java38 public boolean layoutDependsOn(CoordinatorLayout parent, TextView child, View dependency) { argument
43 public boolean onDependentViewChanged(CoordinatorLayout parent, TextView child, argument
45 ViewCompat.setTranslationY(child, Math.min(0,

Completed in 498 milliseconds

1234567891011>>