HomeSort by relevance Sort by last modified time
    Searched refs:childRight (Results 1 - 25 of 35) sorted by null

1 2

  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorPadLayout.java 84 final int childRight = childLeft - lp.leftMargin - lp.rightMargin + columnWidth;
86 final int childWidth = childRight - childLeft;
94 childView.layout(childLeft, childTop, childRight, childBottom);
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 208 int childRight;
214 childRight = mRight - mLeft - mPaddingRight;
215 childLeft = childRight - child.getMeasuredWidth();
220 childRight = childLeft + child.getMeasuredWidth();
226 childRight = childLeft + child.getMeasuredWidth();
234 if (childRight > mRight - mLeft - mPaddingRight) {
235 childRight = mRight - mLeft - mPaddingRight;
238 child.layout(childLeft, childTop, childRight, childBottom);
  /cts/tests/tests/widget/src/android/widget/cts/
GridViewTest.java 338 int[][] childRight = new int[3][3];
357 childRight[STRETCH_SPACING][INDEX_RIGHTMOST] = child.getRight();
360 childRight[STRETCH_SPACING][INDEX_0] = child.getRight();
363 childRight[STRETCH_SPACING][INDEX_1] = child.getRight();
376 childRight[STRETCH_COLUMN_WIDTH][INDEX_RIGHTMOST] = child.getRight();
379 childRight[STRETCH_COLUMN_WIDTH][INDEX_0] = child.getRight();
382 childRight[STRETCH_COLUMN_WIDTH][INDEX_1] = child.getRight();
395 childRight[STRETCH_SPACING_UNIFORM][INDEX_RIGHTMOST] = child.getRight();
398 childRight[STRETCH_SPACING_UNIFORM][INDEX_0] = child.getRight();
401 childRight[STRETCH_SPACING_UNIFORM][INDEX_1] = child.getRight()
    [all...]
  /frameworks/base/core/java/android/widget/
AbsoluteLayout.java 72 int childRight;
78 childRight = lp.x + child.getMeasuredWidth();
81 maxWidth = Math.max(maxWidth, childRight);
Gallery.java 912 int childRight;
921 childRight = childLeft + width;
924 childRight = x;
927 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
AdapterViewAnimator.java 770 int childRight = mPaddingLeft + child.getMeasuredWidth();
773 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom);
    [all...]
Spinner.java 660 int childRight;
670 childRight = childLeft + width;
672 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
ListView.java     [all...]
StackView.java     [all...]
GridView.java     [all...]
LinearLayout.java     [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 153 final int childRight = childLeft + child.getMeasuredWidth();
156 child.layout(childLeft, childTop, childRight, childBottom);
158 cellStart = childRight + childParams.getMarginEnd();
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardContainerView.java 123 final int childRight = childLeft + childWidth;
129 child.layout(childLeft, childTop, childRight, childBottom);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java     [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBarLayout.java 308 int childRight = lp.start + child.getMeasuredWidth();
311 int tmp = width - childRight;
312 childRight = width - childLeft;
316 child.layout(childLeft, lp.top, childRight, lp.top + child.getMeasuredHeight());
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
SpinnerCompat.java 580 int childRight;
590 childRight = childLeft + width;
592 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 805 final int childRight = childLeft + child.getMeasuredWidth();
806 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
SlidingPaneLayout.java 703 final int childRight;
706 childRight = width - xStart + offset;
707 childLeft = childRight - childWidth;
710 childRight = childLeft + childWidth;
715 child.layout(childLeft, paddingTop, childRight, childBottom);
    [all...]
DrawerLayout.java     [all...]
  /packages/apps/Dialer/src/com/android/dialer/widget/
OverlappingPaneLayout.java 606 final int childRight = childLeft + child.getMeasuredWidth();
608 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java     [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java     [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.jar 
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 537 milliseconds

1 2