/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
D | StaggeredGridView.java | 2377 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/ |
D | CalculatorPadLayout.java | 80 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/ |
D | ShortcutAndWidgetContainer.java | 143 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()
|
D | PagedViewCellLayoutChildren.java | 138 int childTop = lp.y; in onLayout() local 139 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
|
D | PagedView.java | 664 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/ |
D | AttachmentTileGrid.java | 194 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/ |
D | ShortcutAndWidgetContainer.java | 187 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()
|
D | PagedViewCellLayoutChildren.java | 139 int childTop = lp.y; in onLayout() local 140 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
|
D | PagedView.java | 961 int childTop; in onLayout() local 963 childTop = offsetY; in onLayout() 965 childTop = offsetY + getPaddingTop() + mInsets.top; in onLayout() 967 …childTop += (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/ |
D | ConversationContainer.java | 720 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/ |
D | DashboardContainerView.java | 125 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/ |
D | OverlappingPaneLayout.java | 603 final int childTop = yStart; in onLayout() local 604 final int childBottom = childTop + childHeight; in onLayout() 608 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()
|