Home | History | Annotate | Download | only in home

Lines Matching refs:childTop

196         int childTop = getHeight();
201 childTop -= childHeight + mMarginBottom;
202 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
203 childTop -= mMarginTop;
204 mFavoritesEnd = childTop - mMarginBottom;
206 int oldChildTop = childTop;
207 childTop = stackApplications(mFavorites, childLeft, childTop);
208 if (childTop != oldChildTop) {
209 mFavoritesStart = childTop + mMarginTop;
214 stackApplications(mRecents, childLeft, childTop);
219 int childTop = 0;
225 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
230 childLeft = stackApplications(mFavorites, childLeft, childTop);
237 stackApplications(mRecents, childLeft, childTop);
240 private int stackApplications(List<ApplicationInfo> applications, int childLeft, int childTop) {
263 childTop -= childHeight + mMarginBottom;
265 if (childTop < 0) {
266 childTop += childHeight + mMarginBottom;
280 view.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
283 childTop -= mMarginTop;
289 return isVertical ? childTop : childLeft;