Home
last modified time | relevance | path

Searched refs:spaceBelow (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DToolbar.java1431 final int spaceBelow = height - paddingBottom - titleHeight - in onLayout() local
1433 if (spaceBelow < toplp.bottomMargin + mTitleMarginBottom) { in onLayout()
1435 (bottomlp.bottomMargin + mTitleMarginBottom - spaceBelow)); in onLayout()
1609 final int spaceBelow = height - paddingBottom - childHeight - in getChildTop() local
1611 if (spaceBelow < lp.bottomMargin) { in getChildTop()
1612 spaceAbove = Math.max(0, spaceAbove - (lp.bottomMargin - spaceBelow)); in getChildTop()
/frameworks/base/core/java/android/widget/
DToolbar.java1415 final int spaceBelow = height - paddingBottom - titleHeight - in onLayout() local
1417 if (spaceBelow < toplp.bottomMargin + mTitleMarginBottom) { in onLayout()
1419 (bottomlp.bottomMargin + mTitleMarginBottom - spaceBelow)); in onLayout()
1593 final int spaceBelow = height - paddingBottom - childHeight - in getChildTop() local
1595 if (spaceBelow < lp.bottomMargin) { in getChildTop()
1596 spaceAbove = Math.max(0, spaceAbove - (lp.bottomMargin - spaceBelow)); in getChildTop()
DListView.java851 final int spaceBelow = sel.getBottom() - bottomSelectionPixel; in fillFromSelection() local
852 final int offset = Math.min(spaceAbove, spaceBelow); in fillFromSelection()
863 final int spaceBelow = bottomSelectionPixel - sel.getBottom(); in fillFromSelection() local
864 final int offset = Math.min(spaceAbove, spaceBelow); in fillFromSelection()
1003 int spaceBelow = sel.getBottom() - bottomSelectionPixel; in moveSelection() local
1007 int offset = Math.min(spaceAbove, spaceBelow); in moveSelection()
1064 int spaceBelow = bottomSelectionPixel - sel.getBottom(); in moveSelection() local
1068 int offset = Math.min(spaceAbove, spaceBelow); in moveSelection()
DGridView.java806 int spaceBelow = childInSelectedRow.getBottom() - bottomSelectionPixel; in adjustForBottomFadingEdge() local
807 int offset = Math.min(spaceAbove, spaceBelow); in adjustForBottomFadingEdge()
833 int spaceBelow = bottomSelectionPixel - childInSelectedRow.getBottom(); in adjustForTopFadingEdge() local
834 int offset = Math.min(spaceAbove, spaceBelow); in adjustForTopFadingEdge()
DAbsListView.java4874 final int spaceBelow = lastBottom - end;
4990 if (spaceAbove < absIncrementalDeltaY || spaceBelow < absIncrementalDeltaY) {