Home
last modified time | relevance | path

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

/packages/apps/Launcher2/src/com/android/launcher2/
DShortcutAndWidgetContainer.java126 int childLeft = lp.x; in onLayout() local
128 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
137 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.java611 int childLeft = getRelativeChildOffset(0); in onLayout() local
623 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); in onLayout()
624 child.layout(childLeft, childTop, in onLayout()
625 childLeft + child.getMeasuredWidth(), childTop + childHeight); in onLayout()
626 childLeft += childWidth + mPageSpacing; in onLayout()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DFloatingChildLayout.java151 final int childLeft = (getWidth() - childWidth) / 2; in onLayout() local
153 layoutChild(child, childLeft, childTop); in onLayout()
156 final int childLeft = target.centerX() - (childWidth / 2); in onLayout() local
161 final int clampedChildLeft = clampDimension(childLeft, childWidth, getWidth()); in onLayout()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactTileAdapter.java593 int childLeft = 0;
599 child.layout(childLeft, 0, childLeft + childWidth, child.getMeasuredHeight());
600 childLeft += childWidth;