Home
last modified time | relevance | path

Searched refs:contentHeight (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DAbsActionBarView.java222 protected int positionChild(View child, int x, int y, int contentHeight) { in positionChild() argument
225 int childTop = y + (contentHeight - childHeight) / 2; in positionChild()
232 protected int positionChildInverse(View child, int x, int y, int contentHeight) { in positionChildInverse() argument
235 int childTop = y + (contentHeight - childHeight) / 2; in positionChildInverse()
DActionBarContextView.java459 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local
464 x += positionChild(mClose, x, y, contentHeight); in onLayout()
476 x += positionChild(mTitleLayout, x, y, contentHeight); in onLayout()
480 x += positionChild(mCustomView, x, y, contentHeight); in onLayout()
486 x -= positionChildInverse(mMenuView, x, y, contentHeight); in onLayout()
DActionBarView.java1015 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local
1017 if (contentHeight <= 0) { in onLayout()
1028 x += positionChild(homeLayout, x + leftOffset, y, contentHeight) + leftOffset; in onLayout()
1037 x += positionChild(mTitleLayout, x, y, contentHeight); in onLayout()
1047 x += positionChild(mListNavLayout, x, y, contentHeight) + mItemPadding; in onLayout()
1054 x += positionChild(mTabScrollView, x, y, contentHeight) + mItemPadding; in onLayout()
1062 positionChildInverse(mMenuView, menuLeft, y, contentHeight); in onLayout()
1068 positionChildInverse(mIndeterminateProgressView, menuLeft, y, contentHeight); in onLayout()
DScrollingTabContainerView.java181 public void setContentHeight(int contentHeight) { in setContentHeight() argument
182 mContentHeight = contentHeight; in setContentHeight()
/frameworks/base/core/java/android/webkit/
DViewStateSerializer.java59 int contentHeight = dis.readInt(); in deserializeViewState() local
65 draw.mContentSize = new Point(contentWidth, contentHeight); in deserializeViewState()
DWebViewCore.java3020 int contentWidth, int contentHeight, float xPercentInDoc, in showRect() argument
3029 data.mContentHeight = contentHeight; in showRect()
DWebViewClassic.java6937 int contentHeight = contentToViewDimension(mContentHeight); in onMeasure() local
6944 measuredHeight = contentHeight; in onMeasure()
/frameworks/base/core/java/android/widget/
DScrollView.java1148 final int contentHeight = getHeight() - mPaddingBottom - mPaddingTop; in computeVerticalScrollRange() local
1150 return contentHeight; in computeVerticalScrollRange()
1155 final int overscrollBottom = Math.max(0, scrollRange - contentHeight); in computeVerticalScrollRange()