/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/internal/widget/ |
AbsActionBarView.java | 195 int childTop = y + (contentHeight - childHeight) / 2; 197 child.layout(x, childTop, x + childWidth, childTop + childHeight); 205 int childTop = y + (contentHeight - childHeight) / 2; 207 child.layout(x - childWidth, childTop, x, childTop + childHeight);
|
SpinnerICS.java | 423 int childTop = mSpinnerPadding.top 426 int childBottom = childTop + child.getMeasuredHeight(); 432 child.layout(childLeft, childTop, childRight, childBottom);
|
/frameworks/base/core/java/com/android/internal/widget/ |
AbsActionBarView.java | 239 int childTop = y + (contentHeight - childHeight) / 2; 242 child.layout(x - childWidth, childTop, x, childTop + childHeight); 244 child.layout(x, childTop, x + childWidth, childTop + childHeight);
|
ActionBarOverlayLayout.java | 367 int childTop; 369 childTop = parentBottom - height - lp.bottomMargin; 371 childTop = parentTop + lp.topMargin; 374 child.layout(childLeft, childTop, childLeft + width, childTop + height);
|
/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/widget/ |
AbsoluteLayout.java | 119 int childTop = mPaddingTop + lp.y; 120 child.layout(childLeft, childTop, 122 childTop + child.getMeasuredHeight());
|
FrameLayout.java | 412 int childTop; 440 childTop = parentTop + lp.topMargin; 443 childTop = parentTop + (parentBottom - parentTop - height) / 2 + 447 childTop = parentBottom - height - lp.bottomMargin; 450 childTop = parentTop + lp.topMargin; 453 child.layout(childLeft, childTop, childLeft + width, childTop + height);
|
LinearLayout.java | 481 // We should add to childTop: 485 int childTop = mBaselineChildTop; 492 childTop = mBottom - mTop - mPaddingBottom - mTotalLength; 496 childTop += ((mBottom - mTop - mPaddingTop - mPaddingBottom) - 504 return childTop + lp.topMargin + childBaseline; [all...] |
Gallery.java | 911 int childTop = calculateTop(child, true); 912 int childBottom = childTop + child.getMeasuredHeight(); 923 child.layout(childLeft, childTop, childRight, childBottom); 936 int childTop = 0; 940 childTop = mSpinnerPadding.top; 945 childTop = mSpinnerPadding.top + (availableSpace / 2); 948 childTop = myHeight - mSpinnerPadding.bottom - childHeight; 951 return childTop; [all...] |
SlidingDrawer.java | 329 int childTop; 335 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset; 341 childTop = (height - childHeight) / 2; 348 handle.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
QuickSettingsContainerView.java | 135 final int childTop = y; 136 final int childBottom = childTop + childHeight; 139 child.layout(childLeft, childTop, childRight, childBottom);
|
/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/Launcher3/src/com/android/launcher3/ |
PagedViewCellLayoutChildren.java | 139 int childTop = lp.y; 140 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
|
ShortcutAndWidgetContainer.java | 187 int childTop = lp.y; 188 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); 198 cellXY[1] + childTop + lp.height / 2, 0, null);
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
FloatingChildLayout.java | 152 final int childTop = mFixedTopPosition; 153 layoutChild(child, childLeft, childTop); 158 final int childTop = target.centerY() - Math.round(childHeight * 0.35f); 162 final int clampedChildTop = clampDimension(childTop, childHeight, getHeight());
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
AttachmentTileGrid.java | 166 int childTop = 0; 178 // in the grid, reset childLeft to 0 and update childTop 182 childTop += childHeight; 187 child.layout(childLeft, childTop, 188 childLeft + childWidth, childTop + childHeight);
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
InfoBarLayout.java | 320 int childTop = (rowHeight - child.getMeasuredHeight()) / 2; 333 child.layout(childLeft, childTop, childLeft + child.getMeasuredWidth(), 334 childTop + child.getMeasuredHeight()); 347 int childTop = (rowHeight - child.getMeasuredHeight()) / 2; 360 child.layout(childLeft, childTop, childLeft + child.getMeasuredWidth(), 361 childTop + child.getMeasuredHeight()); [all...] |
/frameworks/ex/widget/java/com/android/ex/widget/ |
StaggeredGridView.java | 790 int childTop = mItemBottoms[col] > Integer.MIN_VALUE ? 793 int lowest = childTop; 800 childTop = lowest; 803 final int childBottom = childTop + childHeight; 806 child.layout(childLeft, childTop, childRight, childBottom); [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
StaggeredGridView.java | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTRegion.cpp | 371 float childTop = toHTMLDivElement(m_cueContainer->childNode(i))->getBoundingClientRect()->top(); 377 float height = childBottom - childTop;
|
/frameworks/base/core/java/android/app/ |
FragmentBreadCrumbs.java | 185 final int childTop = mPaddingTop; 219 child.layout(childLeft, childTop, childRight, childBottom);
|
/frameworks/support/v4/java/android/support/v4/widget/ |
DrawerLayout.java | 730 int childTop = (height - childHeight) / 2; 734 if (childTop < lp.topMargin) { 735 childTop = lp.topMargin; 736 } else if (childTop + childHeight > height - lp.bottomMargin) { 737 childTop = height - lp.bottomMargin - childHeight; 739 child.layout(childLeft, childTop, childLeft + childWidth, 740 childTop + childHeight); [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationContainer.java | 724 final int childTop = lp.topMargin; 725 nonScrollingChild.layout(childLeft, childTop, childLeft + w, childTop + h); [all...] |