Searched defs:mDividerHeight (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/
H A DDividerItemDecoration.java84 private int mDividerHeight; field in class:DividerItemDecoration
115 final int dividerHeight = mDividerHeight != 0 ? mDividerHeight : mDividerIntrinsicHeight;
130 outRect.bottom = mDividerHeight != 0 ? mDividerHeight : mDividerIntrinsicHeight;
214 mDividerHeight = dividerHeight;
221 return mDividerHeight;
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DPreferenceFragment.java786 private int mDividerHeight; field in class:PreferenceFragment.DividerDecoration
800 mDivider.setBounds(0, top, width, top + mDividerHeight);
810 outRect.bottom = mDividerHeight;
834 mDividerHeight = divider.getIntrinsicHeight();
836 mDividerHeight = 0;
843 mDividerHeight = dividerHeight;
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceFragmentCompat.java774 private int mDividerHeight; field in class:PreferenceFragmentCompat.DividerDecoration
788 mDivider.setBounds(0, top, width, top + mDividerHeight);
798 outRect.bottom = mDividerHeight;
822 mDividerHeight = divider.getIntrinsicHeight();
824 mDividerHeight = 0;
831 mDividerHeight = dividerHeight;
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java215 private int mDividerHeight; field in class:LinearLayout
337 mDividerHeight = divider.getIntrinsicHeight();
340 mDividerHeight = 0;
410 final int top = child.getTop() - lp.topMargin - mDividerHeight;
420 bottom = getHeight() - getPaddingBottom() - mDividerHeight;
485 getWidth() - getPaddingRight() - mDividerPadding, top + mDividerHeight);
776 mTotalLength += mDividerHeight;
877 mTotalLength += mDividerHeight;
1631 childTop += mDividerHeight;
H A DListView.java188 int mDividerHeight; field in class:ListView
296 delta -= mDividerHeight;
310 delta += mDividerHeight;
748 final int startOffset = count > 0 ? getChildAt(count - 1).getBottom() + mDividerHeight :
757 final int startOffset = count > 0 ? getChildAt(0).getTop() - mDividerHeight :
788 nextTop = child.getBottom() + mDividerHeight;
821 nextBottom = child.getTop() - mDividerHeight;
894 final int dividerHeight = mDividerHeight;
1078 final int dividerHeight = mDividerHeight;
1394 final int dividerHeight = mDividerHeight;
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java69 private int mDividerHeight; field in class:NotificationChildrenContainer
128 mDividerHeight = res.getDimensionPixelSize(
155 mDividers.get(i).layout(0, 0, getWidth(), mDividerHeight);
194 int dividerHeightSpec = MeasureSpec.makeMeasureSpec(mDividerHeight, MeasureSpec.EXACTLY);
212 height += child.getMeasuredHeight() + mDividerHeight;
504 intrinsicHeight += NotificationUtils.interpolate(mChildPadding, mDividerHeight,
507 intrinsicHeight += childrenExpanded ? mDividerHeight : mChildPadding;
513 mNotificatonTopPadding + mDividerHeight,
517 ? mNotificatonTopPadding + mDividerHeight
561 yPosition += NotificationUtils.interpolate(mChildPadding, mDividerHeight,
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java138 private int mDividerHeight; field in class:LinearLayoutCompat
236 mDividerHeight = divider.getIntrinsicHeight();
239 mDividerHeight = 0;
300 final int top = child.getTop() - lp.topMargin - mDividerHeight;
310 bottom = getHeight() - getPaddingBottom() - mDividerHeight;
362 getWidth() - getPaddingRight() - mDividerPadding, top + mDividerHeight);
628 mTotalLength += mDividerHeight;
727 mTotalLength += mDividerHeight;
1492 childTop += mDividerHeight;

Completed in 164 milliseconds