Home
last modified time | relevance | path

Searched refs:mTop (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DFixedSizeDrawable.java28 int mTop; field in FixedSizeDrawable
38 mTop = t; in setFixedBounds()
44 mDrawable.setBounds(mLeft, mTop, mRight, mBottom); in setBounds()
48 mDrawable.setBounds(mLeft, mTop, mRight, mBottom); in setBounds()
/frameworks/base/core/java/android/widget/
DRelativeLayout.java407 top = Math.min(top, params.mTop - params.topMargin); in onMeasure()
426 top = Math.min(top, params.mTop - params.topMargin); in onMeasure()
489 params.mTop = height - mPaddingBottom - childHeight; in onMeasure()
490 params.mBottom = params.mTop + childHeight; in onMeasure()
519 params.mTop += verticalOffset; in onMeasure()
537 int offset = anchorParams.mTop + anchorBaseline; in alignBaseline()
542 int height = params.mBottom - params.mTop; in alignBaseline()
543 params.mTop = offset; in alignBaseline()
544 params.mBottom = params.mTop + height; in alignBaseline()
552 if (params.mTop < lp.mTop || (params.mTop == lp.mTop && params.mLeft < lp.mLeft)) { in alignBaseline()
[all …]
DSlidingDrawer.java444 (!mExpanded && top > mBottomOffset + mBottom - mTop - in onTouchEvent()
568 handle.offsetTopAndBottom(mBottomOffset + mBottom - mTop - in moveHandle()
576 } else if (deltaY > mBottomOffset + mBottom - mTop - mHandleHeight - top) { in moveHandle()
577 deltaY = mBottomOffset + mBottom - mTop - mHandleHeight - top; in moveHandle()
637 int height = mBottom - mTop - childHeight - mTopOffset; in prepareContent()
646 MeasureSpec.makeMeasureSpec(mBottom - mTop, MeasureSpec.EXACTLY)); in prepareContent()
DLinearLayout.java457 childTop = mBottom - mTop - mPaddingBottom - mTotalLength; in getBaseline()
461 childTop += ((mBottom - mTop - mPaddingTop - mPaddingBottom) - in getBaseline()
1434 childTop = mPaddingTop + mBottom - mTop - mTotalLength; in layoutVertical()
1439 childTop = mPaddingTop + (mBottom - mTop - mTotalLength) / 2; in layoutVertical()
1511 final int height = mBottom - mTop; in layoutHorizontal()
DListView.java189 return (int) (MAX_SCROLL_FACTOR * (mBottom - mTop)); in getMaxScrollAmount()
664 int end = (mBottom - mTop); in fillDown()
1375 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooHigh()
1426 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooLow()
1480 int childrenBottom = mBottom - mTop - mListPadding.bottom; in layoutChildren()
2868 final int listBottom = mBottom - mTop - mListPadding.bottom;
3115 final int listBottom = mBottom - mTop - effectivePaddingBottom + mScrollY;
DAnalogClock.java170 int availableHeight = mBottom - mTop; in onDraw()
DGridView.java275 int end = (mBottom - mTop); in fillDown()
584 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooHigh()
627 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooLow()
1133 final int childrenBottom = mBottom - mTop - mListPadding.bottom; in layoutChildren()
DFrameLayout.java461 final int h = mBottom-mTop; in draw()
DNumberPicker.java1368 float totalTextGapHeight = (mBottom - mTop) - totalTextHeight; in initializeSelectorWheel()
1382 setFadingEdgeLength((mBottom - mTop - mTextSize) / 2); in initializeFadingEdges()
DAdapterView.java735 this.onLayout(false, mLeft, mTop, mRight, mBottom); in updateEmptyStatus()
DExpandableListView.java245 scrollY + mBottom - mTop - mPaddingBottom); in dispatchDraw()
DImageView.java902 scrollY + mBottom - mTop - mPaddingBottom); in onDraw()
DTextView.java4053 int vspace = mBottom - mTop - getCompoundPaddingBottom() - compoundPaddingTop; in getErrorY()
4545 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop; in invalidateDrawable()
4552 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop; in invalidateDrawable()
4569 scrollY += (mBottom - mTop - mPaddingBottom - drawables.mDrawableSizeBottom); in invalidateDrawable()
4723 final int top = mTop; in onDraw()
6733 int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom(); in bringTextIntoView()
6832 int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom(); in bringPointIntoView()
6985 final int vspace = mBottom - mTop - getExtendedPaddingTop() - getExtendedPaddingBottom(); in moveCursorToVisibleOffset()
7072 output += "frame={" + mLeft + ", " + mTop + ", " + mRight in debug()
10611 mDrawable.setBounds(0, 0, mRight - mLeft, mBottom - mTop); in onDraw()
DScrollView.java203 return (int) (MAX_SCROLL_FACTOR * (mBottom - mTop)); in getMaxScrollAmount()
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
DVerticalGravityTest.java36 private View mTop; field in VerticalGravityTest
52 mTop = activity.findViewById(R.id.cell_top); in setUp()
62 assertNotNull(mTop); in testSetUpConditions()
69 ViewAsserts.assertTopAligned(mReference1, mTop); in testTopGravity()
/frameworks/base/core/java/android/view/
DView.java2203 protected int mTop; field in View
6650 if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) {
6896 return mBottom - mTop;
6910 outRect.bottom = mScrollY + (mBottom - mTop);
7037 if ((mRight - mLeft) != info.mPrevWidth || (mBottom - mTop) != info.mPrevHeight) {
7039 info.mPrevHeight = mBottom - mTop;
7514 return mTop;
7525 if (top != mTop) {
7533 if (top < mTop) {
7535 yLoc = top - mTop;
[all …]
DSurfaceView.java154 int mTop = -1; field in SurfaceView
451 || mLeft != mLocation[0] || mTop != mLocation[1] in updateWindow()
458 + " top=" + (mTop != mLocation[1])); in updateWindow()
463 mTop = mLocation[1]; in updateWindow()
472 mLayout.y = mTop; in updateWindow()
DViewGroup.java1585 final float offsetY = mScrollY - child.mTop; in dispatchTransformedGenericPointerEvent()
1896 float localY = y + mScrollY - child.mTop; in isTransformedTouchPointInView()
1956 final float offsetY = mScrollY - child.mTop; in dispatchTransformedTouchEvent()
1975 final float offsetY = mScrollY - child.mTop; in dispatchTransformedTouchEvent()
2480 mScrollY + mBottom - mTop - mPaddingBottom); in dispatchDraw()
2624 final int ct = child.mTop; in drawChild()
3967 location[CHILD_TOP_INDEX] = child.mTop; in invalidateChild()
4051 final int top = mTop; in invalidateChildInParent()
4071 location[CHILD_TOP_INDEX] = mTop; in invalidateChildInParent()
4073 dirty.set(0, 0, mRight - mLeft, mBottom - mTop); in invalidateChildInParent()
[all …]
DViewPropertyAnimator.java752 info.mTranslationY = value - mView.mTop; in setValue()
786 return mView.mTop + info.mTranslationY; in getValue()
/frameworks/base/media/libstagefright/
DMetaData.cpp79 r.mTop = top; in setRect()
174 *top = r->mTop; in findRect()
/frameworks/base/media/libstagefright/foundation/
DAMessage.cpp183 item->u.rectValue.mTop = top; in setRect()
224 *top = item->u.rectValue.mTop; in findRect()
393 item.u.rectValue.mTop, in debugString()
/frameworks/base/include/media/stagefright/foundation/
DAMessage.h114 int32_t mLeft, mTop, mRight, mBottom; member
/frameworks/base/include/media/stagefright/
DMetaData.h220 int32_t mLeft, mTop, mRight, mBottom; member
/frameworks/base/policy/src/com/android/internal/policy/impl/
DRecentApplicationsBackground.java63 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) { in setFrame()
/frameworks/base/core/java/android/webkit/
DWebViewCore.java2747 int mTop; field in WebViewCore.ShowRectData
2764 data.mTop = top; in showRect()

12