Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
DStaggeredGridView.java2393 int childLeft = 0;
2398 childLeft = childRight - child.getMeasuredWidth();
2400 childLeft = paddingLeft + col * (colWidth + itemMargin);
2401 childRight = childLeft + child.getMeasuredWidth();
2411 child.layout(childLeft, childTop, childRight, childBottom);
2501 final int childLeft = (int) child.getX();
2502 final int childRight = childLeft + child.getWidth();
2503 rect = new Rect(childLeft, childTop, childRight, childBottom);
2613 int childLeft = 0;
2623 childLeft = childRight - child.getMeasuredWidth();
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DAttachmentTileGrid.java193 int childLeft = (isRtl) ? width - getChildAt(0).getMeasuredWidth() : 0; in onLayoutForTiles() local
208 childLeft = (isRtl) ? width - childWidth : 0; in onLayoutForTiles()
214 child.layout(childLeft, childTop, in onLayoutForTiles()
215 childLeft + childWidth, childTop + childHeight); in onLayoutForTiles()
218 childLeft -= childWidth - mTilePadding; in onLayoutForTiles()
220 childLeft += childWidth + mTilePadding; in onLayoutForTiles()
/packages/apps/Calculator/src/com/android/calculator2/
DCalculatorPadLayout.java82 final int childLeft = paddingLeft + lp.leftMargin + in onLayout() local
84 final int childRight = childLeft - lp.leftMargin - lp.rightMargin + columnWidth; in onLayout()
86 final int childWidth = childRight - childLeft; in onLayout()
94 childView.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/packages/apps/Launcher2/src/com/android/launcher2/
DShortcutAndWidgetContainer.java142 int childLeft = lp.x; in onLayout() local
144 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
153 cellXY[0] + childLeft + lp.width / 2, in onLayout()
DPagedViewCellLayoutChildren.java137 int childLeft = offsetX + lp.x; in onLayout() local
139 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
DPagedView.java658 int childLeft = getRelativeChildOffset(startIndex); in onLayout() local
669 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); in onLayout()
670 child.layout(childLeft, childTop, in onLayout()
671 childLeft + child.getMeasuredWidth(), childTop + childHeight); in onLayout()
672 childLeft += childWidth + mPageSpacing; in onLayout()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationContainer.java727 final int childLeft = lp.leftMargin; in onLayout() local
729 nonScrollingChild.layout(childLeft, childTop, childLeft + w, childTop + h); in onLayout()
842 final int childLeft = getPaddingLeft() + lp.leftMargin; in layoutOverlay() local
844 child.layout(childLeft, top, childLeft + child.getMeasuredWidth(), bottom); in layoutOverlay()
/packages/apps/Launcher3/src/com/android/launcher3/
DShortcutAndWidgetContainer.java186 int childLeft = lp.x; in onLayout() local
188 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
197 cellXY[0] + childLeft + lp.width / 2, in onLayout()
DPagedViewCellLayoutChildren.java138 int childLeft = offsetX + lp.x; in onLayout() local
140 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
DPagedView.java961 int childLeft = offsetX + (lp.isFullScreenPage ? 0 : getPaddingLeft()); in onLayout() local
983 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); in onLayout()
984 child.layout(childLeft, childTop, in onLayout()
985 childLeft + child.getMeasuredWidth(), childTop + childHeight); in onLayout()
988 mPageScrolls[i] = childLeft - scrollOffsetLeft - offsetX; in onLayout()
1006 childLeft += childWidth + pageGap; in onLayout()
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DContactTileAdapter.java561 int childLeft = mWhitespaceStartEnd - (mPaddingInPixels + 1) / 2;
570 child.layout(childLeft, 0, childLeft + childWidth, child.getMeasuredHeight());
571 childLeft += childWidth;
/packages/apps/Settings/src/com/android/settings/dashboard/
DDashboardContainerView.java122 final int childLeft = (isLayoutRtl) ? width - x - childWidth : x; in onLayout() local
123 final int childRight = childLeft + childWidth; in onLayout()
129 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/packages/apps/Gallery2/src/com/android/photos/views/
DGalleryThumbnailView.java272 int childLeft = forward ? x : x - columnWidth; in makeAndAddColumn() local
273 child.layout(childLeft, nextTop, childLeft + columnWidth, nextTop + heightSize); in makeAndAddColumn()
/packages/apps/Dialer/src/com/android/dialer/widget/
DOverlappingPaneLayout.java604 final int childLeft = paddingLeft; in onLayout() local
605 final int childRight = childLeft + child.getMeasuredWidth(); in onLayout()
607 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()