Searched refs:bottom (Results 451 - 475 of 625) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java99 public void repositionChild(IWindow window, int left, int top, int right, int bottom, argument
/frameworks/native/opengl/include/GLES/
H A Dgl.h601 GL_API void GL_APIENTRY glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
619 GL_API void GL_APIENTRY glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
671 GL_API void GL_APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
707 GL_API void GL_APIENTRY glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h512 GLAPI void APIENTRY glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
513 GLAPI void APIENTRY glFrustumx (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
545 GLAPI void APIENTRY glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
546 GLAPI void APIENTRY glOrthox (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.cpp81 // In GL, (0, 0) is the bottom-left corner, so flip y coordinates
83 size_t b = hwh - sourceCrop.bottom;
H A DGLES20RenderEngine.cpp85 // In GL, (0, 0) is the bottom-left corner, so flip y coordinates
87 size_t b = hwh - sourceCrop.bottom;
/frameworks/rs/
H A DrsFont.cpp146 // 0, 0 is top left, so bottom is a positive number
147 if (bounds->bottom < nPenY) {
148 bounds->bottom = nPenY;
785 bounds->bottom = - bounds->bottom;
/frameworks/support/design/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java144 padding.left, padding.top, padding.right, padding.bottom);
/frameworks/support/design/src/android/support/design/widget/
H A DTextInputLayout.java1263 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1264 super.onLayout(changed, left, top, right, bottom);
1275 r, rect.bottom - mEditText.getCompoundPaddingBottom());
1280 r, bottom - top - getPaddingBottom());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DHeadersFragment.java142 public void onLayoutChange(View v, int left, int top, int right, int bottom,
H A DHeadersSupportFragment.java144 public void onLayoutChange(View v, int left, int top, int right, int bottom,
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAbstractDetailsDescriptionPresenter.java90 public void onLayoutChange(View v, int left, int top, int right, int bottom,
H A DStreamingTextView.java245 float x, int top, int y, int bottom, Paint paint) {
244 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
H A DGridLayoutManager.java1019 outBounds.bottom -= params.mBottomInset;
1183 int heightUsed = p.topMargin + p.bottomMargin + sTempRect.top + sTempRect.bottom;
1410 int heightUsed = lp.topMargin + lp.bottomMargin + sTempRect.top + sTempRect.bottom;
1618 int left, top, right, bottom;
1623 bottom = startSecondary + sizeSecondary;
1627 bottom = end;
1631 layoutDecoratedWithMargins(v, left, top, right, bottom);
1637 sTempRect.right - right, sTempRect.bottom - bottom);
2561 // or align "lastView" to right/bottom paddin
[all...]
/frameworks/support/v7/cardview/api21/android/support/v7/widget/
H A DRoundRectDrawable.java108 mBoundsF.set(bounds.left, bounds.top, bounds.right, bounds.bottom);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOrientationHelper.java196 * padding and for vertical helper, this is the bottom padding. This method does not check
403 return mTmpRect.bottom;
H A DRecyclerView.java2317 return (mTempRect.bottom > mTempRect2.bottom
2318 || mTempRect.top >= mTempRect2.bottom)
2322 || mTempRect.bottom <= mTempRect2.top)
2323 && mTempRect.bottom < mTempRect2.bottom;
2345 mTempRect.bottom += insets.bottom;
4317 view.getBottom() + insets.bottom + lp.bottomMargin);
4339 insets.bottom
8322 layoutDecorated(View child, int left, int top, int right, int bottom) argument
8357 layoutDecoratedWithMargins(View child, int left, int top, int right, int bottom) argument
11867 public int bottom; field in class:RecyclerView.ItemAnimator.ItemHolderInfo
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DDefaultMeasureSpecTest.java58 mRecyclerView.setPadding(mPadding.left, mPadding.top, mPadding.right, mPadding.bottom);
H A DTestResizingRelayoutWithAutoMeasure.java171 outRect.bottom < 0) {
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java971 mTmpToClipRect.bottom = (int) (mTmpToClipRect.bottom / scaleW);
977 (int) (-contentInsets.bottom * scaleW));
1105 mTmpFromClipRect.bottom = mTmpFromClipRect.top + unscaledThumbHeight;
1135 mTmpFromClipRect.bottom = mTmpFromClipRect.top + thumbHeightI;
1211 ? 0 : surfaceInsets.top + surfaceInsets.bottom;
1373 float toHeight = mTmpToClipRect.height() - contentInsets.top - contentInsets.bottom;
1423 * at the top and the bottom. For example when we animate from full screen to
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java349 cropHint.bottom = options.outHeight;
354 (cropHint.bottom > options.outHeight ? options.outHeight - cropHint.bottom : 0));
429 cropHint.bottom /= scale;
1301 if (padding.left < 0 || padding.top < 0 || padding.right < 0 || padding.bottom < 0) {
1876 out.attribute(null, "cropBottom", Integer.toString(wallpaper.cropHint.bottom));
1887 if (wallpaper.padding.bottom != 0) {
1888 out.attribute(null, "paddingBottom", Integer.toString(wallpaper.padding.bottom));
2111 wallpaper.cropHint.bottom = getAttributeInt(parser, "cropBottom", 0);
2115 wallpaper.padding.bottom
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java430 * {@link #getRight() right} and {@link #getBottom() bottom}.
3194 protected void internalSetPadding(int left, int top, int right, int bottom) { argument
3195 super.internalSetPadding(left, top, right, bottom);
3313 int bottom = 0;
3321 bottom = Math.max(bottom, insets.bottom);
3324 return Insets.of(left, top, right, bottom);
3409 c.getBottom() - insets.bottom - 1);
3741 out.bottom
7343 setMargins(int left, int top, int right, int bottom) argument
7375 setMarginsRelative(int start, int top, int end, int bottom) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DProgressBar.java1690 dirty.right + scrollX, dirty.bottom + scrollY);
1709 int bottom = h;
1732 bottom = top + height;
1741 mIndeterminateDrawable.setBounds(left, top, right, bottom);
1745 mProgressDrawable.setBounds(0, 0, right, bottom);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java936 float bottom = Math.max(lastCellCenterY, y) + radius;
948 bottom = Math.max(hitCellCenterY + height, bottom);
953 Math.round(right), Math.round(bottom));
1444 bounds.bottom = (int) (centerY + cellheight);
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java461 * @param bottom Bottom position.
463 public void onLayoutSurface(Session session, int left, int top, int right, int bottom) { argument
643 final int bottom) {
647 mSessionCallback.onLayoutSurface(mSession, left, top, right, bottom);
999 public void onLayoutSurface(int left, int top, int right, int bottom, int seq) {
1006 record.postLayoutSurface(left, top, right, bottom);
642 postLayoutSurface(final int left, final int top, final int right, final int bottom) argument
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.cpp47 lhs.bottom == rhs.bottom;
54 lhs.bottom == rhs.bottom;
1482 output << rect.right << ", " << rect.bottom << "]";
1506 output << approximateFloatString(frect.bottom) << "]";
1963 rects[0].bottom = height;
2233 hwc1Layer.sourceCropi.bottom =
2234 static_cast<int32_t>(std::floor(pending.bottom));

Completed in 589 milliseconds

<<11121314151617181920>>