HomeSort by relevance Sort by last modified time
    Searched defs:childLeft (Results 1 - 12 of 12) sorted by null

  /frameworks/base/core/java/android/widget/
AbsoluteLayout.java 118 int childLeft = mPaddingLeft + lp.x;
120 child.layout(childLeft, childTop,
121 childLeft + child.getMeasuredWidth(),
FrameLayout.java 298 int childLeft = parentLeft;
309 childLeft = parentLeft + lp.leftMargin;
312 childLeft = parentLeft + (parentRight - parentLeft - width) / 2 +
316 childLeft = parentRight - width - lp.rightMargin;
319 childLeft = parentLeft + lp.leftMargin;
338 child.layout(childLeft, childTop, childLeft + width, childTop + height);
Spinner.java 230 int childLeft;
240 childLeft = 0;
241 childRight = childLeft + width;
243 child.layout(childLeft, childTop, childRight, childBottom);
LinearLayout.java     [all...]
Gallery.java 733 int childLeft = child.getLeft();
736 mRightMost = Math.max(mRightMost, childLeft
738 mLeftMost = Math.min(mLeftMost, childLeft);
791 int childLeft;
800 childLeft = x;
801 childRight = childLeft + width;
803 childLeft = x - width;
807 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
SlidingDrawer.java 322 int childLeft;
328 childLeft = (width - childWidth) / 2;
334 childLeft = mExpanded ? mTopOffset : width - childWidth + mBottomOffset;
342 handle.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
    [all...]
ListView.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
IconMerger.java 114 int childLeft = child.getLeft();
116 if (childLeft < breakingPoint) {
128 shift = childLeft - fitLeft;
131 child.layout(childLeft-shift, child.getTop(),
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 153 final int childLeft = getPaddingLeft();
155 child.layout(childLeft, childTop,
156 childLeft + child.getMeasuredWidth(),
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 195 int childLeft = 0;
202 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
207 childTop = stackApplications(mFavorites, childLeft, childTop);
214 stackApplications(mRecents, childLeft, childTop);
218 int childLeft = getWidth();
224 childLeft -= childWidth;
225 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
226 childLeft -= mMarginLeft
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 563 int childLeft = lp.x;
565 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
573 cellXY[0] + childLeft + lp.width / 2,
    [all...]
Workspace.java 544 int childLeft = 0;
551 child.layout(childLeft, 0, childLeft + childWidth, child.getMeasuredHeight());
552 childLeft += childWidth;
    [all...]

Completed in 345 milliseconds