Home
last modified time | relevance | path

Searched refs:childTop (Results 1 – 10 of 10) 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/UnifiedEmail/src/com/android/mail/ui/
DAttachmentTileGrid.java166 int childTop = 0; in onLayoutForTiles() local
182 childTop += childHeight; in onLayoutForTiles()
187 child.layout(childLeft, childTop, in onLayoutForTiles()
188 childLeft + childWidth, childTop + childHeight); in onLayoutForTiles()
/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/Contacts/src/com/android/contacts/quickcontact/
DFloatingChildLayout.java152 final int childTop = mFixedTopPosition; in onLayout() local
153 layoutChild(child, childLeft, childTop); in onLayout()
158 final int childTop = target.centerY() - Math.round(childHeight * 0.35f); in onLayout() local
162 final int clampedChildTop = clampDimension(childTop, childHeight, getHeight()); in onLayout()
/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.java936 int childTop; in onLayout() local
938 childTop = offsetY; in onLayout()
940 childTop = offsetY + getPaddingTop() + mInsets.top; in onLayout()
942childTop += (getViewportHeight() - mInsets.top - mInsets.bottom - verticalPadding - child.getMeasu… in onLayout()
949 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); in onLayout()
950 child.layout(childLeft, childTop, in onLayout()
951 childLeft + child.getMeasuredWidth(), childTop + childHeight); in onLayout()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationContainer.java724 final int childTop = lp.topMargin; in onLayout() local
725 nonScrollingChild.layout(childLeft, childTop, childLeft + w, childTop + h); in onLayout()
841 private void layoutOverlay(View child, int childTop, int childBottom) { in layoutOverlay() argument
842 final int top = childTop - mOffsetY; in layoutOverlay()