Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/widget/
DMatchParentShrinkingLinearLayout.java1114 int childLeft; in layoutVertical() local
1164 childLeft = paddingLeft + ((childSpace - childWidth) / 2) in layoutVertical()
1169 childLeft = childRight - childWidth - lp.rightMargin; in layoutVertical()
1174 childLeft = paddingLeft + lp.leftMargin; in layoutVertical()
1183 setChildFrame(child, childLeft, childTop + getLocationOffset(child), in layoutVertical()
1220 int childLeft; in layoutHorizontal() local
1243 childLeft = mPaddingLeft + right - left - mTotalLength; in layoutHorizontal()
1248 childLeft = mPaddingLeft + (right - left - mTotalLength) / 2; in layoutHorizontal()
1253 childLeft = mPaddingLeft; in layoutHorizontal()
1270 childLeft += measureNullChild(childIndex); in layoutHorizontal()
[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/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/Launcher3/src/com/android/launcher3/
DShortcutAndWidgetContainer.java162 int childLeft = lp.x; in onLayout() local
164 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
173 cellXY[0] + childLeft + lp.width / 2, in onLayout()
DPagedView.java793 int childLeft = offsetX + (lp.isFullScreenPage ? 0 : getPaddingLeft()); in onLayout() local
813 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); in onLayout()
814 child.layout(childLeft, childTop, in onLayout()
815 childLeft + child.getMeasuredWidth(), childTop + childHeight); in onLayout()
818 mPageScrolls[i] = childLeft - scrollOffsetLeft - offsetX; in onLayout()
836 childLeft += childWidth + pageGap + getChildGap(); 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/TV/src/com/android/tv/tuner/layout/
DScaledLayout.java261 int childLeft = paddingLeft + mRectArray[i].left; in onLayout() local
267 childBottom, childLeft, in onLayout()
270 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()