/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
D | ActionBarContextView.java | 323 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local 330 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl); in onLayout() 335 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl); in onLayout() 339 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl); in onLayout() 345 x += positionChild(mMenuView, x, y, contentHeight, !isLayoutRtl); in onLayout()
|
D | AbsActionBarView.java | 263 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { in positionChild() argument 266 int childTop = y + (contentHeight - childHeight) / 2; in positionChild()
|
D | ScrollingTabContainerView.java | 197 public void setContentHeight(int contentHeight) { in setContentHeight() argument 198 mContentHeight = contentHeight; in setContentHeight()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarContextView.java | 386 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local 393 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl); in onLayout() 399 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl); in onLayout() 403 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl); in onLayout() 409 x += positionChild(mMenuView, x, y, contentHeight, !isLayoutRtl); in onLayout()
|
D | AbsActionBarView.java | 263 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { in positionChild() argument 266 int childTop = y + (contentHeight - childHeight) / 2; in positionChild()
|
D | ActionBarView.java | 1093 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local 1095 if (contentHeight <= 0) { in onLayout() 1122 next(x, startOffset, isLayoutRtl), y, contentHeight, isLayoutRtl); in onLayout() 1134 x += positionChild(mListNavLayout, x, y, contentHeight, isLayoutRtl); in onLayout() 1141 x += positionChild(mTabScrollView, x, y, contentHeight, isLayoutRtl); in onLayout() 1149 positionChild(mMenuView, menuStart, y, contentHeight, !isLayoutRtl); in onLayout() 1155 positionChild(mIndeterminateProgressView, menuStart, y, contentHeight, !isLayoutRtl); in onLayout()
|
D | ScrollingTabContainerView.java | 189 public void setContentHeight(int contentHeight) { in setContentHeight() argument 190 mContentHeight = contentHeight; in setContentHeight()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ExpandableView.java | 176 public void setContentHeight(int contentHeight) { in setContentHeight() argument 177 setActualHeight(contentHeight + getBottomDecorHeight(), true); in setContentHeight()
|
D | NotificationContentView.java | 252 public void setContentHeight(int contentHeight) { in setContentHeight() argument 253 mContentHeight = Math.max(Math.min(contentHeight, getHeight()), getMinHeight());; in setContentHeight() 254 mUnrestrictedContentHeight = Math.max(contentHeight, getMinHeight()); in setContentHeight()
|
D | ExpandableNotificationRow.java | 866 int contentHeight = calculateContentHeightFromActualHeight(height); in setActualHeight() local 867 mPrivateLayout.setContentHeight(contentHeight); in setActualHeight() 868 mPublicLayout.setContentHeight(contentHeight); in setActualHeight()
|
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 1233 final int contentHeight = getHeight() - mPaddingBottom - mPaddingTop; in computeVerticalScrollRange() local 1235 return contentHeight; in computeVerticalScrollRange() 1240 final int overscrollBottom = Math.max(0, scrollRange - contentHeight); in computeVerticalScrollRange()
|
/frameworks/support/v4/java/android/support/v4/widget/ |
D | NestedScrollView.java | 1287 final int contentHeight = getHeight() - getPaddingBottom() - getPaddingTop(); in computeVerticalScrollRange() local 1289 return contentHeight; in computeVerticalScrollRange() 1294 final int overscrollBottom = Math.max(0, scrollRange - contentHeight); in computeVerticalScrollRange()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | NotificationStackScrollLayout.java | 1311 int contentHeight = getContentHeight(); in getScrollRange() local 1313 scrollRange = Math.max(0, contentHeight - mMaxLayoutHeight + mBottomStackPeekSize in getScrollRange()
|