HomeSort by relevance Sort by last modified time
    Searched defs:childTop (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /frameworks/support/percent/tests/java/android/support/percent/
PercentRelativeTest.java 88 final int childTop = childToTest.getTop();
93 0.05f * mContainerHeight, childTop);
109 final int childTop = childToTest.getTop();
114 0.2f * mContainerHeight, childTop);
164 final int childTop = childToTest.getTop();
174 topChild.getBottom() + 0.1f * mContainerHeight, childTop);
PercentFrameTest.java 96 int childTop = childToTest.getTop();
103 0.3f * mContainerHeight, childTop);
115 int childTop = childToTest.getTop();
120 0.1f * mContainerHeight, childTop);
136 int childTop = childToTest.getTop();
145 0.2f * mContainerHeight, childTop);
PercentRelativeRtlTest.java 147 final int childTop = childToTest.getTop();
149 0.05f * mContainerHeight, childTop);
184 final int childTop = childToTest.getTop();
187 0.2f * mContainerHeight, childTop);
261 final int childTop = childToTest.getTop();
273 topChild.getBottom() + 0.1f * mContainerHeight, childTop);
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
PercentFrameLayout.java 90 final int childTop = subTop + (subHeight - childHeight) / 2;
91 child.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
  /frameworks/base/core/java/android/widget/
AbsoluteLayout.java 122 int childTop = mPaddingTop + lp.y;
123 child.layout(childLeft, childTop,
125 childTop + child.getMeasuredHeight());
FrameLayout.java 282 int childTop;
310 childTop = parentTop + lp.topMargin;
313 childTop = parentTop + (parentBottom - parentTop - height) / 2 +
317 childTop = parentBottom - height - lp.bottomMargin;
320 childTop = parentTop + lp.topMargin;
323 child.layout(childLeft, childTop, childLeft + width, childTop + height);
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorPadLayout.java 80 final int childTop = paddingTop + lp.topMargin + rowIndex * rowHeight;
81 final int childBottom = childTop - lp.topMargin - lp.bottomMargin + rowHeight;
87 final int childHeight = childBottom - childTop;
94 childView.layout(childLeft, childTop, childRight, childBottom);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 153 final int childTop = getPaddingTop();
154 child.layout(childLeft, childTop,
156 childTop + child.getMeasuredHeight());
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 204 final int childTop = mPaddingTop;
238 child.layout(childLeft, childTop, childRight, childBottom);
  /frameworks/base/core/java/com/android/internal/widget/
MessagingLinearLayout.java 190 int childTop;
199 childTop = mPaddingTop;
222 childTop += mSpacing;
225 childTop += lp.topMargin;
226 child.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
228 childTop += childHeight + lp.bottomMargin;
AbsActionBarView.java 321 int childTop = y + (contentHeight - childHeight) / 2;
324 child.layout(x - childWidth, childTop, x, childTop + childHeight);
326 child.layout(x, childTop, x + childWidth, childTop + childHeight);
NotificationActionListLayout.java 205 int childTop;
246 childTop = paddingTop + ((innerHeight - childHeight) / 2)
250 child.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 152 final int childTop = cellTop + childParams.topMargin;
154 final int childBottom = childTop + child.getMeasuredHeight();
156 child.layout(childLeft, childTop, childRight, childBottom);
PrintContentView.java 420 final int childTop = child.getTop();
425 if (childTop == openedOptionsY || childTop == closedOptionsY) {
430 if (childTop < halfRange) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ScaleFrameLayout.java 130 int childTop;
155 childTop = parentTop + lp.topMargin;
158 childTop = parentTop + (parentBottom - parentTop - height) / 2 +
162 childTop = parentBottom - height - lp.bottomMargin;
165 childTop = parentTop + lp.topMargin;
168 child.layout(childLeft, childTop, childLeft + width, childTop + height);
171 child.setPivotY(pivotY - childTop);
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayoutChildren.java 138 int childTop = lp.y;
139 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
ShortcutAndWidgetContainer.java 143 int childTop = lp.y;
144 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
154 cellXY[1] + childTop + lp.height / 2, 0, null);
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/layout/
ScaledLayout.java 248 int childTop = paddingTop + mRectArray[i].top;
254 childRight, childTop));
256 child.layout(childLeft, childTop, childRight, childBottom);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTileGrid.java 194 int childTop = 0;
205 // in the grid, reset childLeft to 0 and update childTop
209 childTop += childHeight + mTilePadding;
214 child.layout(childLeft, childTop,
215 childLeft + childWidth, childTop + childHeight);
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 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)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AbsActionBarView.java 262 int childTop = y + (contentHeight - childHeight) / 2;
265 child.layout(x - childWidth, childTop, x, childTop + childHeight);
267 child.layout(x, childTop, x + childWidth, childTop + childHeight);
  /packages/apps/Launcher3/src/com/android/launcher3/
ShortcutAndWidgetContainer.java 182 int childTop = lp.y;
183 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
193 cellXY[1] + childTop + lp.height / 2, 0, null);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
BoxInsetLayout.java 261 int childTop;
326 childTop = parentTop + lp.topMargin;
332 childTop = 0;
334 childTop = parentTop + lp.topMargin;
338 childTop = parentTop + (parentBottom - parentTop - height) / 2 +
344 childTop = bottom - top - height;
346 childTop = parentBottom - height - lp.bottomMargin;
350 childTop = parentTop + lp.topMargin;
355 child.layout(childLeft, childTop, childLeft + width, childTop + height)
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
ProgramGrid.java 392 int childTop = mLayoutManager.getDecoratedTop(childView);
394 if ((childTop + childBottom) / 2 > top) {
  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 492 // We should add to childTop:
496 int childTop = mBaselineChildTop;
503 childTop = mBottom - mTop - mPaddingBottom - mTotalLength;
507 childTop += ((mBottom - mTop - mPaddingTop - mPaddingBottom) -
515 return childTop + lp.topMargin + childBaseline;
    [all...]

Completed in 770 milliseconds

1 2 3 4