Home
last modified time | relevance | path

Searched refs:bottomBound (Results 1 – 3 of 3) sorted by relevance

/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
DAbsSeekBar.java338 int topBound, bottomBound;
342 bottomBound = oldBounds.bottom;
345 bottomBound = gap + thumbHeight;
349 thumb.setBounds(thumbPos, topBound, thumbPos + thumbWidth, bottomBound);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DContactListItemView.java463 int bottomBound = height; in onLayout() local
473 int headerTopBound = (bottomBound + topBound - headerHeight) / 2 + mTextOffsetTop; in onLayout()
488 mBoundsWithoutHeader.set(left + leftBound, topBound, left + rightBound, bottomBound); in onLayout()
508 final int photoTop = topBound + (bottomBound - topBound - mPhotoViewHeight) / 2; in onLayout()
523 final int photoTop = topBound + (bottomBound - topBound - mPhotoViewHeight) / 2; in onLayout()
542 int textTopBound = (bottomBound + topBound - totalTextHeight) / 2 + mTextOffsetTop; in onLayout()
/packages/apps/Dialer/src/com/android/dialer/widget/
DOverlappingPaneLayout.java1191 int bottomBound = topBound + (mPanelSlideCallbacks.isScrollableChildUnscrolled() in clampViewPositionVertical() local
1193 if (previousTop > bottomBound) { in clampViewPositionVertical()
1196 bottomBound = Math.max(bottomBound, mSlideRange); in clampViewPositionVertical()
1198 newTop = Math.min(Math.max(top, topBound), bottomBound); in clampViewPositionVertical()