Home
last modified time | relevance | path

Searched refs:childTop (Results 1 – 12 of 12) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
DStaggeredGridView.java2377 int childTop = mItemBottoms[col] + mItemMargin;
2379 int lowest = childTop;
2388 childTop = lowest;
2392 final int childBottom = childTop + childHeight;
2411 child.layout(childLeft, childTop, childRight, childBottom);
2499 final int childTop = (int) child.getY();
2500 final int childBottom = childTop + child.getHeight();
2503 rect = new Rect(childLeft, childTop, childRight, childBottom);
2611 final int childTop = childBottom - childHeight;
2628 child.layout(childLeft, childTop, childRight, childBottom);
[all …]
/packages/apps/Calculator/src/com/android/calculator2/
DCalculatorPadLayout.java80 final int childTop = paddingTop + lp.topMargin + rowIndex * rowHeight; in onLayout() local
81 final int childBottom = childTop - lp.topMargin - lp.bottomMargin + rowHeight; in onLayout()
87 final int childHeight = childBottom - childTop; in onLayout()
94 childView.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/packages/apps/Launcher2/src/com/android/launcher2/
DShortcutAndWidgetContainer.java143 int childTop = lp.y; in onLayout() local
144 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
154 cellXY[1] + childTop + lp.height / 2, 0, null); in onLayout()
DPagedViewCellLayoutChildren.java138 int childTop = lp.y; in onLayout() local
139 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
DPagedView.java664 int childTop = getPaddingTop(); in onLayout() local
666 childTop += ((getMeasuredHeight() - verticalPadding) - childHeight) / 2; in onLayout()
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()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DAttachmentTileGrid.java194 int childTop = 0; in onLayoutForTiles() local
209 childTop += childHeight + mTilePadding; in onLayoutForTiles()
214 child.layout(childLeft, childTop, in onLayoutForTiles()
215 childLeft + childWidth, childTop + childHeight); in onLayoutForTiles()
/packages/apps/Launcher3/src/com/android/launcher3/
DShortcutAndWidgetContainer.java187 int childTop = lp.y; in onLayout() local
188 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
198 cellXY[1] + childTop + lp.height / 2, 0, null); in onLayout()
DPagedViewCellLayoutChildren.java139 int childTop = lp.y; in onLayout() local
140 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
DPagedView.java961 int childTop; in onLayout() local
963 childTop = offsetY; in onLayout()
965 childTop = offsetY + getPaddingTop() + mInsets.top; in onLayout()
967childTop += (getViewportHeight() - mInsets.top - mInsets.bottom - verticalPadding - child.getMeasu… in onLayout()
974 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); in onLayout()
975 child.layout(childLeft, childTop, in onLayout()
976 childLeft + child.getMeasuredWidth(), childTop + childHeight); in onLayout()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationContainer.java720 final int childTop = lp.topMargin; in onLayout() local
721 nonScrollingChild.layout(childLeft, childTop, childLeft + w, childTop + h); in onLayout()
829 private void layoutOverlay(View child, int childTop, int childBottom) { in layoutOverlay() argument
830 final int top = childTop - mOffsetY; in layoutOverlay()
/packages/apps/Settings/src/com/android/settings/dashboard/
DDashboardContainerView.java125 final int childTop = y; in onLayout() local
126 final int childBottom = childTop + childHeight; in onLayout()
129 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/packages/apps/Dialer/src/com/android/dialer/widget/
DOverlappingPaneLayout.java603 final int childTop = yStart; in onLayout() local
604 final int childBottom = childTop + childHeight; in onLayout()
608 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()